From f016fdb2192cf83c585661811f7f3135b9b37c13 Mon Sep 17 00:00:00 2001 From: Ravind Kumar Date: Thu, 27 Oct 2022 11:27:55 -0400 Subject: [PATCH] Additional fixes --- .../install-deploy-manage/deploy-minio-tenant.rst | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/source/operations/install-deploy-manage/deploy-minio-tenant.rst b/source/operations/install-deploy-manage/deploy-minio-tenant.rst index 39e457b8..c78f23b5 100644 --- a/source/operations/install-deploy-manage/deploy-minio-tenant.rst +++ b/source/operations/install-deploy-manage/deploy-minio-tenant.rst @@ -124,20 +124,15 @@ See :ref:`deploy-operator-kubernetes` for complete documentation on deploying th Take note of this value before the slash for use in this procedure. -Storage as Persistent Volumes -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Persistent Volumes +~~~~~~~~~~~~~~~~~~ -MinIO automatically generates :kube-docs:`Persistent Volume Claims (PVC) ` as part of deploying a MinIO Tenant. -The Operator generates one PVC for each volume in the tenant *plus* two PVC to support collecting Tenant Metrics and logs. -For example, deploying a Tenant with 16 volumes requires 18 (16 + 2) ``PV``. - -MinIO can use any Kubernetes Persistent Volume that supports the :kube-docs:`ReadWriteOnce ` access mode. +MinIO can use any Kubernetes :kube-docs:`Persistent Volume (PV) ` that supports the :kube-docs:`ReadWriteOnce ` access mode. MinIO's consistency guarantees require the exclusive storage access that ``ReadWriteOnce`` provides. -Defer to the documentation for your preferred Persistent Volume provider or plugin as to whether it supports the ``ReadWriteOnce`` access mode. -For Kubernetes clusters where worker nodes have Direct Attached Storage, MinIO strongly recommends using the :minio-git:`DirectPV CSI driver>`. +For Kubernetes clusters where nodes have Direct Attached Storage, MinIO strongly recommends using the `DirectPV CSI driver `__. DirectPV provides a distributed persistent volume manager that can discover, format, mount, schedule, and monitor drives across Kubernetes nodes. -DirectPV addresses the limitations of manually provisioning and monitoring ``local`` or ``hostPath`` Persistent Volumes. +DirectPV addresses the limitations of manually provisioning and monitoring :kube-docs:`local persistent volumes `. Deploy a Tenant using the MinIO Operator Console ------------------------------------------------