Skip to content

Commit 47cfd60

Browse files
committed
Update minio setup Gitbook page
1 parent 6c2687c commit 47cfd60

File tree

1 file changed

+10
-20
lines changed

1 file changed

+10
-20
lines changed

docs-gb/notebooks/minio_setup.md

Lines changed: 10 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,22 @@
11
# Install MinIO in cluster
22

3-
## Helm install minio
3+
## Helm install minio (toy setup)
44

55

66
```bash
77
%%bash
88
kubectl 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

0 commit comments

Comments
 (0)