added default minio user
All checks were successful
continuous-integration/publish-helm Helm publish succeeded

increased volume size to 500Gb
This commit is contained in:
2025-12-22 16:56:22 +11:00
parent 46f2c1cc36
commit 6d1667c5a7
2 changed files with 14 additions and 10 deletions

View File

@@ -1,2 +1,4 @@
oc adm policy add-scc-to-user privileged -z minio-sa -n minio oc adm policy add-scc-to-user privileged -z minio-sa -n minio
oc adm policy add-scc-to-user anyuid -z minio-sa -n minio oc adm policy add-scc-to-user anyuid -z minio-sa -n minio
oc adm policy add-scc-to-user privileged -z default -n minio
oc adm policy add-scc-to-user anyuid -z default -n minio

View File

@@ -90,8 +90,8 @@ runtimeClassName: ""
## rootUser and rootPassword is generated when not set ## rootUser and rootPassword is generated when not set
## Distributed MinIO ref: https://min.io/docs/minio/linux/operations/install-deploy-manage/deploy-minio-multi-node-multi-drive.html ## Distributed MinIO ref: https://min.io/docs/minio/linux/operations/install-deploy-manage/deploy-minio-multi-node-multi-drive.html
## ##
rootUser: "" rootUser: "minio"
rootPassword: "" rootPassword: "th1rt33nletterS."
## Use existing Secret that store following variables: ## Use existing Secret that store following variables:
## ##
@@ -162,7 +162,7 @@ persistence:
storageClass: "nfs" storageClass: "nfs"
#volumeName: "minio" #volumeName: "minio"
accessMode: ReadWriteMany accessMode: ReadWriteMany
size: 300Gi size: 500Gi
## If subPath is set mount a sub folder of a volume instead of the root of the volume. ## If subPath is set mount a sub folder of a volume instead of the root of the volume.
## This is especially handy for volume plugins that don't natively support sub mounting (like glusterfs). ## This is especially handy for volume plugins that don't natively support sub mounting (like glusterfs).
@@ -280,7 +280,7 @@ securityContext:
#runAsUser: 1000 #runAsUser: 1000
#runAsGroup: 1000 #runAsGroup: 1000
#fsGroup: 1000 #fsGroup: 1000
fsGroupChangePolicy: "OnRootMismatch" #fsGroupChangePolicy: "OnRootMismatch"
containerSecurityContext: containerSecurityContext:
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
@@ -503,19 +503,21 @@ postJob:
annotations: {} annotations: {}
securityContext: securityContext:
enabled: false enabled: false
runAsUser: 1000 # runAsUser: 1000
runAsGroup: 1000 # runAsGroup: 1000
fsGroup: 1000 # fsGroup: 1000
nodeSelector: {} nodeSelector: {}
tolerations: [] tolerations: []
affinity: {} affinity: {}
## Use this field to add environment variables relevant to MinIO server. These fields will be passed on to MinIO container(s) ## Use this field to add environment variables relevant to MinIO server. These fields will be passed on to MinIO container(s)
## when Chart is deployed ## when Chart is deployed
## Please refer for comprehensive list https://min.io/docs/minio/linux/reference/minio-server/minio-server.html
## MINIO_SUBNET_LICENSE: "License key obtained from https://subnet.min.io"
## MINIO_BROWSER: "off"
environment: environment:
## Please refer for comprehensive list https://min.io/docs/minio/linux/reference/minio-server/minio-server.html #MINIO_SERVER_URL: "https://minio.apilab.us"
## MINIO_SUBNET_LICENSE: "License key obtained from https://subnet.min.io" #MINIO_BROWSER_REDIRECT_URL: "https://minio-console.apilab.us"
## MINIO_BROWSER: "off"
## The name of a secret in the same kubernetes namespace which contain secret values ## The name of a secret in the same kubernetes namespace which contain secret values
## This can be useful for LDAP password, etc ## This can be useful for LDAP password, etc