-
Notifications
You must be signed in to change notification settings - Fork 460
Deploy MinIO Operator with Helm
Cesar Celis Hernandez edited this page Sep 14, 2022
·
14 revisions
To deploy MinIO Operator with Helm
- Delete previous cluster if any:
kind delete cluster
- Create cluster with Kind:
kind create cluster --config kind-config.yaml
Where the
kind-config.yaml
is:
# four node (two workers) cluster config
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
- role: worker
- role: worker
- role: worker
- role: worker
- Deploy MinIO Operator with Helm:
helm repo add minio https://operator.min.io/
helm install \
--namespace minio-operator \
--create-namespace \
minio-operator minio/operator