diff --git a/minio/values-tenant.yaml b/minio/values-tenant.yaml
index 81c711e..f903e57 100644
--- a/minio/values-tenant.yaml
+++ b/minio/values-tenant.yaml
@@ -180,4 +180,71 @@ tenant:
###
#
# The name of a custom `Container Runtime `__ to use for the Operator Console pods.
- # runtimeClassName: ""
\ No newline at end of file
+ # runtimeClassName: ""
+ ###
+ # The mount path where Persistent Volumes are mounted inside Tenant container(s).
+ mountPath: /export
+ ###
+ # The Sub path inside Mount path where MinIO stores data.
+ #
+ # .. warning::
+ #
+ # Treat the ``mountPath`` and ``subPath`` values as immutable once you deploy the Tenant.
+ # If you change these values post-deployment, then you may have different paths for new and pre-existing data.
+ # This can vastly increase operational complexity and may result in unpredictable data states.
+ subPath: /data
+ ###
+ # Configures a Prometheus-compatible scraping endpoint at the specified port.
+ metrics:
+ enabled: false
+ port: 9000
+ protocol: http
+ ###
+ # Configures external certificate settings for the Tenant.
+ certificate:
+ ###
+ # Specify an array of Kubernetes TLS secrets, where each entry corresponds to a secret the TLS private key and public certificate pair.
+ #
+ # This is used by MinIO to verify TLS connections from clients using those CAs
+ # If you omit this and have clients using TLS certificates minted by an external CA, those connections may fail with warnings around certificate verification.
+ # See `Operator CRD: TenantSpec `__.
+ externalCaCertSecret: [ ]
+ ###
+ # Specify an array of Kubernetes secrets, where each entry corresponds to a secret contains the TLS private key and public certificate pair.
+ #
+ # Omit this to use only the MinIO Operator autogenerated certificates.
+ #
+ # If you omit this field *and* set ``requestAutoCert`` to false, the Tenant starts without TLS.
+ #
+ # See `Operator CRD: TenantSpec `__.
+ #
+ # .. important::
+ #
+ # The MinIO Operator may output TLS connectivity errors if it cannot trust the Certificate Authority (CA) which minted the custom certificates.
+ #
+ # You can pass the CA to the Operator to allow it to trust that cert.
+ # See `Self-Signed, Internal, and Private Certificates `__ for more information.
+ # This step may also be necessary for globally trusted CAs where you must provide intermediate certificates to the Operator to help build the full chain of trust.
+ externalCertSecret: [ ]
+ ###
+ # Enable automatic Kubernetes based `certificate generation and signing `__
+ requestAutoCert: true
+ ###
+ # The minimum number of days to expiry before an alert for an expiring certificate is fired.
+ # In the below example, if a given certificate will expire in 7 days then expiration events will only be triggered 1 day before expiry
+ # certExpiryAlertThreshold: 1
+ ###
+ # This field is used only when ``requestAutoCert: true``.
+ # Use this field to set CommonName for the auto-generated certificate.
+ # MinIO defaults to using the internal Kubernetes DNS name for the pod
+ # The default DNS name format is typically ``*.minio.default.svc.cluster.local``.
+ #
+ # See `Operator CRD: CertificateConfig `__
+ certConfig: { }
+ ###
+ # MinIO features to enable or disable in the MinIO Tenant
+ # See `Operator CRD: Features `__.
+ features:
+ bucketDNS: false
+ domains: { }
+ enableSFTP: false
\ No newline at end of file