Install MinIO
Helm install minio
%%bash
kubectl create ns minio-system
helm repo add minio https://helm.min.io/
helm install minio minio/minio \
--set accessKey=minioadmin \
--set secretKey=minioadmin \
--namespace minio-system!kubectl rollout status deployment -n minio-system minioport-forward Minio to localhost
in separate terminal:
kubectl port-forward -n minio-system svc/minio 8090:9000or follow instructions printed by helm
Install MinIO CLI client tool
Install minio using go get:
%%bash
GO111MODULE=on go get github.com/minio/mcOr follow steps relevant to your platform from official documentation.
Configure mc client to talk to your cluster
Last updated
Was this helpful?