Minio is a high performance distributed object storage server, designed for large-scale private cloud infrastructure. Minio is designed in a cloud-native manner to scale sustainably in multi-tenant environments. Orchestration platforms like Kubernetes provide perfect launchpad for Minio to scale. There are multiple options to deploy Minio on Kubernetes:
-
Helm Chart: Minio Helm Chart offers customizable and easy Minio deployment with a single command. Refer Minio Helm Chart repository documentation for more details.
-
YAML File: Minio can be deployed with yaml files via kubectl. Refer Minio yaml file documentation to deploy Minio using yaml files.
-
Minio-Operator: Operator creates and manages distributed Minio deployments running on Kubernetes, using CustomResourceDefinitions and Controller.
- Kubernetes cluster 1.8.0+.
kubectl
configured to refer to relevant Kubernetes cluster.
To start Minio-Operator, use the docs/minio-operator.yaml
file.
kubectl create -f https://github.com/minio/minio-operator/blob/master/docs/minio-operator.yaml?raw=true
This will create all relevant resources required for the Operator to work. Here is a list of resources created by above yaml
file:
Namespace
: Custom namespace for Minio-Operator. By default it is names asminio-operator-ns
.CustomResourceDefinition
: Custom resource definition named asminioinstances.miniocontroller.minio.io
.ClusterRole
: A cluster wide role for the controller. It is named asminio-operator-role
. This is used for RBAC.ServiceAccount
: Service account is used by the custom controller to access the cluster. Account name by default isminio-operator-sa
.ClusterRoleBinding
: This cluster wide binding binds the service accountminio-operator-sa
to cluster roleminio-operator-role
.Deployment
: Deployment creates a pod using the Minio-Operator Docker image. This is where the custom controller runs and looks after any changes in custom resource.
Once Minio-Operator deployment is running, you can create Minio instances using the below command
kubectl create -f https://github.com/minio/minio-operator/blob/master/docs/minio-examples/minio-secret.yaml?raw=true
kubectl create -f https://github.com/minio/minio-operator/blob/master/docs/minio-examples/minioinstance.yaml?raw=true
Minio-Operator currently supports following features:
- Create and delete highly available distributed Minio clusters.
- Upgrading existing distributed Minio clusters.
Refer minioinstance.yaml
for details on how to pass supported fields to
the operator.
With next release, we'll add Minio cluster mirror option based on mc mirror command.