File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -412,17 +412,21 @@ deploy_minio() {
412412 desc ' install Minio'
413413 helm uninstall minio-service || :
414414 helm repo remove minio || :
415- helm repo add minio https://helm .min.io/
415+ helm repo add minio https://charts .min.io/
416416 # kubectl_bin delete pvc minio-service --force
417417 retry 10 60 helm install minio-service \
418- --version 8.0.5 \
419- --set accessKey=some-access-key \
420- --set secretKey=some-secret-key \
418+ --version 5.0.14 \
419+ --set replicas=1 \
420+ --set mode=standalone \
421+ --set resources.requests.memory=256Mi \
422+ --set rootUser=rootuser \
423+ --set rootPassword=rootpass123 \
424+ --set " users[0].accessKey=some-access-key" \
425+ --set " users[0].secretKey=some-secret-key" \
426+ --set " users[0].policy=consoleAdmin" \
421427 --set service.type=ClusterIP \
422428 --set configPathmc=/tmp/.minio/ \
423429 --set persistence.size=2G \
424- --set environment.MINIO_REGION=us-east-1 \
425- --set environment.MINIO_HTTP_TRACE=/tmp/trace.log \
426430 --set securityContext.enabled=false \
427431 minio/minio
428432 MINIO_POD=$( kubectl_bin get pods --selector=release=minio-service -o ' jsonpath={.items[].metadata.name}' )
You can’t perform that action at this time.
0 commit comments