Deploy a Silo Tenant with Helm Charts
Overview
Helm is a tool for automating the deployment of applications to Kubernetes clusters. A Helm chart is a set of YAML files, templates, and other files that define the deployment details. The following procedure uses a Helm Chart to deploy a Tenant managed by the MinIO Operator.
This procedure requires the Kubernetes cluster have a valid Operator deployment. You cannot use the MinIO Operator Tenant chart to deploy a Tenant independent of the Operator.
Important
The MinIO Operator Tenant Chart is distinct from the server repository’s legacy community MinIO Chart. This guide uses the Operator Tenant Chart because it exposes an explicit Tenant image override. The upstream Operator repository was archived on March 20, 2026, so this guide pins its final v7.1.1 chart as a frozen compatibility baseline. Silo does not inherit upstream vendor support commitments.
Prerequisites
You must meet the following requirements to install a MinIO Tenant with Helm:
- An existing Kubernetes cluster
- The
kubectlCLI tool on your local host with version matching the cluster. - Helm version 3.8 or greater.
- yq version 4.18.1 or greater.
- An existing MinIO Operator installation.
This procedure assumes your Kubernetes cluster access grants you broad administrative permissions.
For more about Tenant installation requirements, including supported Kubernetes versions and TLS certificates, see the Tenant deployment prerequisites.
This procedure assumes familiarity with the referenced Kubernetes concepts and utilities. While this documentation may provide guidance for configuring or deploying Kubernetes-related resources on a best-effort basis, it is not a replacement for the official Kubernetes Documentation.
Namespace
The tenant must use its own namespace and cannot share a namespace with another tenant. In addition, MinIO strongly recommends using a dedicated namespace for the tenant with no other applications running in the namespace.
Deploy a Silo Tenant using Helm Charts
The following procedure deploys a MinIO Tenant using the MinIO Operator Chart Repository. This method supports a simplified installation path compared to the local chart installation.
The following procedure uses Helm to deploy a MinIO Tenant with the archived upstream Tenant Chart at v7.1.1.
Important
If you use Helm to deploy a MinIO Tenant, you must use Helm to manage or upgrade that deployment. Do not use kubectl krew, Kustomize, or similar methods to manage or upgrade the MinIO Tenant.
This procedure is not exhaustive of all possible configuration options available in the Tenant Chart. It provides a baseline from which you can modify and tailor the Tenant to your requirements.
-
Verify your MinIO Operator Repo Configuration
The archived project’s endpoint at https://operator.min.io currently serves the
v7.1.1chart. If the repository does not already exist in your local Helm configuration, add it before continuing:You can validate the repo contents using
helm search:The response should resemble the following:
-
Create a local copy of the Helm
values.yamlfor modificationOpen
values.yamlin your preferred text editor. Before continuing, replace the upstream server image defaults and disable the inherited in-place updater:Use a newer tag only after it is published on the Silo download page and validated for your deployment. Do not leave
quay.io/minio/minioorlatestin a Silo production values file. -
Configure the Tenant topology
The following fields share the
tenant.pools[0]prefix and control the number of servers, volumes per server, and storage class of all pods deployed in the Tenant:Field
Description
serversThe number of MinIO pods to deploy in the Server Pool.
volumesPerServerThe number of persistent volumes to attach to each MinIO pod (
servers). The Operator generatesvolumesPerServer x serversPersistent Volume Claims for the Tenant.storageClassNameThe Kubernetes storage class to associate with the generated Persistent Volume Claims.
If no storage class exists matching the specified value or if the specified storage class cannot meet the requested number of PVCs or storage capacity, the Tenant may fail to start.
sizeThe amount of storage to request for each generated PVC.
-
Configure Tenant Affinity or Anti-Affinity
The Tenant Chart supports the following Kubernetes Selector, Affinity and Anti-Affinity configurations:
- Node Selector (
tenant.nodeSelector) - Node/Pod Affinity or Anti-Affinity (
spec.pools[n].affinity)
MinIO recommends configuring Tenants with Pod Anti-Affinity to ensure that the Kubernetes schedule does not schedule multiple pods on the same worker node.
If you have specific worker nodes on which you want to deploy the tenant, pass those node labels or filters to the
nodeSelectororaffinityfield to constrain the scheduler to place pods on those nodes. - Node Selector (
-
Configure Network Encryption
The MinIO Tenant CRD provides the following fields with which you can configure tenant TLS network encryption:
Field
Description
tenant.certificate.requestAutoCertEnable or disable MinIO automatic TLS certificate generation.
Defaults to
trueor enabled if omitted.tenant.certificate.certConfigCustomize the behavior of automatic TLS, if enabled.
tenant.certificate.externalCertSecretEnable TLS for multiple hostnames via Server Name Indication (SNI).
Specify one or more Kubernetes secrets of type
kubernetes.io/tlsorcert-manager.tenant.certificate.externalCACertSecretEnable validation of client TLS certificates signed by unknown, third-party, or internal Certificate Authorities (CA).
Specify one or more Kubernetes secrets of type
kubernetes.io/tlscontaining the full chain of CA certificates for a given authority. -
Configure Silo Environment Variables
You can set the server’s
MINIO_*environment variables using thetenant.configurationfield. These names are MinIO-compatible contracts and must not be renamed.Field
Description
tenant.configurationSpecify a Kubernetes opaque secret whose data payload
config.envcontains each MinIO environment variable you want to set.The
config.envdata payload must be a base64-encoded string. You can create a local file, set your environment variables, and then usecat LOCALFILE | base64to create the payload.The YAML includes an object
kind: Secretwithmetadata.name: storage-configurationthat sets the root username, password, erasure parity settings, and enables Tenant Console.Modify this as needed to reflect your Tenant requirements.
-
Deploy the Tenant
Use
helmto install the Tenant Chart using yourvalues.yamlas an override:You can monitor the progress using the following command:
-
Expose the Tenant MinIO S3 API port
To test the MinIO Client
mcfrom your local machine, forward the MinIO port and create an alias.- Forward the Tenant’s MinIO port:
- Create an alias for the Tenant service:
You can use
mc mbto create a bucket on the Tenant:If you deployed your MinIO Tenant using TLS certificates minted by a trusted Certificate Authority (CA) you can omit the
--insecureflag.See Connect to the Tenant for additional documentation on external connectivity to the Tenant.
Deploy a Tenant using a Local Helm Chart
The following procedure deploys a Tenant using a local copy of the Helm Charts. This method may support easier pre-configuration of the Tenant compared to the repo-based installation.
-
Download the Helm charts
On your local host, pull the pinned Tenant chart and extract its default values into a separate override file:
Each chart contains a
values.yamlfile you can customize to suit your needs. For details on the options available in the MinIO Tenantvalues.yaml, see Tenant Helm Charts.Open
values.yamlin your preferred text editor. Settenant.image.repositorytopgsty/minio, pintenant.image.tagto a published Silo release, and addMINIO_UPDATE=offtotenant.env, exactly as shown in the repository-based procedure. -
Configure the Tenant topology
The following fields share the
tenant.pools[0]prefix and control the number of servers, volumes per server, and storage class of all pods deployed in the Tenant:Field
Description
serversThe number of MinIO pods to deploy in the Server Pool.
volumesPerServerThe number of persistent volumes to attach to each MinIO pod (
servers). The Operator generatesvolumesPerServer x serversPersistent Volume Claims for the Tenant.storageClassNameThe Kubernetes storage class to associate with the generated Persistent Volume Claims.
If no storage class exists matching the specified value or if the specified storage class cannot meet the requested number of PVCs or storage capacity, the Tenant may fail to start.
sizeThe amount of storage to request for each generated PVC.
-
Configure Tenant Affinity or Anti-Affinity
The Tenant Chart supports the following Kubernetes Selector, Affinity and Anti-Affinity configurations:
- Node Selector (
tenant.nodeSelector) - Node/Pod Affinity or Anti-Affinity (
spec.pools[n].affinity)
MinIO recommends configuring Tenants with Pod Anti-Affinity to ensure that the Kubernetes schedule does not schedule multiple pods on the same worker node.
If you have specific worker nodes on which you want to deploy the tenant, pass those node labels or filters to the
nodeSelectororaffinityfield to constrain the scheduler to place pods on those nodes. - Node Selector (
-
Configure Network Encryption
The MinIO Tenant CRD provides the following fields from which you can configure tenant TLS network encryption:
Field Description tenant.certificate.requestAutoCertEnables or disables MinIO automatic TLS certificate generation tenant.certificate.certConfigControls the settings for automatic TLS. Requires spec.requestAutoCert: truetenant.certificate.externalCertSecretSpecify one or more Kubernetes secrets of type kubernetes.io/tlsorcert-manager. MinIO uses these certificates for performing TLS handshakes based on hostname (Server Name Indication).tenant.certificate.externalCACertSecretSpecify one or more Kubernetes secrets of type kubernetes.io/tlswith the Certificate Authority (CA) chains which the Tenant must trust for allowing client TLS connections. -
Configure Silo Environment Variables
You can set the server’s
MINIO_*environment variables using thetenant.configurationfield. These names remain compatibility contracts.The field must specify a Kubernetes opaque secret whose data payload
config.envcontains each MinIO environment variable you want to set.The YAML includes an object
kind: Secretwithmetadata.name: storage-configurationthat sets the root username, password, erasure parity settings, and enables Tenant Console.Modify this as needed to reflect your Tenant requirements.
-
The following Helm command creates a Silo Tenant using the pinned local chart and reviewed values:
To deploy more than one Tenant, create a Helm chart with the details of the new Tenant and repeat the deployment steps. Redeploying the same chart updates the previously deployed Tenant.
-
Expose the Tenant MinIO port
To test the MinIO Client
mcfrom your local machine, forward the MinIO port and create an alias.-
Forward the Tenant’s MinIO port:
-
Create an alias for the Tenant service:
This example uses HTTPS with a certificate that the local client may not trust, so it includes
--insecure. If the Tenant presents a certificate trusted by the client, omit that flag. Confirm the service name generated for your Tenant instead of assuming a fixedsvc/minioname.
You can use
mc mbto create a bucket on the Tenant: -
See Connect to the Tenant for additional documentation on external connectivity to the Tenant.