File tree Expand file tree Collapse file tree 1 file changed +10
-20
lines changed
Expand file tree Collapse file tree 1 file changed +10
-20
lines changed Original file line number Diff line number Diff line change 11# Install MinIO in cluster
22
3- ## Helm install minio
3+ ## Helm install minio (toy setup)
44
55
66``` bash
77%%bash
88kubectl create ns minio-system
9- helm repo add minio https://helm.min.io/
10- helm install minio minio/minio \
11- --set accessKey=minioadmin \
12- --set secretKey=minioadmin \
13- --namespace minio-system
9+ helm repo add minio https://charts.min.io/
10+ helm install --namespace minio-system \
11+ --set resources.requests.memory=512Mi \
12+ --set replicas=1 \
13+ --set persistence.enabled=false \
14+ --set mode=standalone \
15+ --set rootUser=minioadmin,rootPassword=minioadmin \
16+ --generate-name minio/minio
1417```
1518
16-
17- ``` python
18- ! kubectl rollout status deployment - n minio- system minio
19- ```
20-
21- ## port-forward Minio to localhost
22-
23- in separate terminal:
24-
25- ``` bash
26- kubectl port-forward -n minio-system svc/minio 8090:9000
27- ```
28-
29- or follow instructions printed by helm
19+ Use instructions generated by Helm to get the pod name and port-forward to localhost.
3020
3121## Install MinIO CLI client tool
3222
You can’t perform that action at this time.
0 commit comments