1
0
mirror of https://github.com/minio/docs.git synced 2025-08-09 13:02:53 +03:00
Andrea Longo
2023-08-31 12:05:42 -06:00
committed by GitHub
parent 1fae334ff3
commit 33b28825f3
3 changed files with 56 additions and 5 deletions

View File

@@ -52,8 +52,9 @@ Syntax
.. code-block:: shell
kubectl minio delete \
--namespace
kubectl minio delete \
--namespace \
[--force --dangerous]
Flags
-----
@@ -67,3 +68,17 @@ The command supports the following flags:
Defaults to ``minio-operator``.
.. mc-cmd:: --dangerous
:optional:
Safety flag to confirm deletion of the MinIO Operator and all tenants with :mc-cmd:`~kubectl minio delete --force`.
This operation is irreversible.
.. mc-cmd:: --force
:optional:
Deletes the MinIO Operator and all tenants without confirmation.
Requires the :mc-cmd:`~kubectl minio delete --dangerous` flag.
This operation is irreversible.

View File

@@ -27,6 +27,7 @@ Displays information on a MinIO Tenant, including but not limited to:
- The total capacity of the Tenant
- The version of MinIO server and MinIO Console running on the Tenant
- The configuration of each Pool in the Tenant.
- The root user credentials for the Tenant.
.. end-kubectl-minio-tenant-info-desc
@@ -34,7 +35,7 @@ Syntax
------
.. tab-set::
.. tab-item:: EXAMPLE
The following example retrieves the information of the MinIO Tenant ``minio-tenant-1`` in the namespace ``minio-namespace-1``.
@@ -44,7 +45,7 @@ Syntax
kubectl minio tenant info \
minio-tenant-1 \
--namespace minio-namespace-1
--namespace minio-namespace-1
.. tab-item:: SYNTAX
@@ -68,3 +69,37 @@ The command supports the following flag:
The namespace in which to look for the MinIO Tenant.
Defaults to ``minio``.
Example
-------
Display Tenant Details
~~~~~~~~~~~~~~~~~~~~~~
The following command outputs information for the Tenant ``minio-tenant`` in the namespace ``minio-ns``:
.. code-block:: shell
:class: copyable
kubectl minio tenant info \
minio-tenant \
--namespace minio-ns
The output resembles the following:
.. code-block:: shell
Tenant 'minio-tenant', Namespace 'minio-ns', Total capacity 16 GiB
Current status: Initialized
MinIO version: minio/minio:RELEASE.2023-06-23T20-26-00Z
MinIO service: minio/ClusterIP (port 443)
Console service: minio-tenant-console/ClusterIP (port 9443)
POOL SERVERS VOLUMES(SERVER) CAPACITY(VOLUME)
0 4 1 4.0 GiB
MinIO Root User Credentials:
MINIO_ROOT_USER="root_user"
MINIO_ROOT_PASSWORD="root_password"