Compare commits

..

3 Commits

Author SHA1 Message Date
488897d0f8 Mycloud forces 501/1000
All checks were successful
continuous-integration/publish-helm Helm publish succeeded
2026-01-14 17:39:15 +11:00
1d67b3bd98 added argo-helm.yaml
All checks were successful
continuous-integration/publish-helm Helm publish succeeded
2025-12-25 15:24:29 +11:00
5a78ae4c73 changed to nfs-csi 2025-12-24 20:13:39 +11:00
3 changed files with 12 additions and 7 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
argo-helm.yaml

4
scc-remove.sh Executable file
View File

@@ -0,0 +1,4 @@
oc adm policy remove-scc-from-user privileged -z minio-sa -n minio
oc adm policy remove-scc-from-user anyuid -z minio-sa -n minio
oc adm policy remove-scc-from-user privileged -z default -n minio
oc adm policy remove-scc-from-user anyuid -z default -n minio

View File

@@ -148,7 +148,7 @@ persistence:
## A manually managed Persistent Volume and Claim
## Requires persistence.enabled: true
## If defined, PVC must be created manually before volume will be bound
existingClaim: ""
existingClaim: "minio"
## minio data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
@@ -159,7 +159,7 @@ persistence:
##
## Storage class of PV to bind. By default it looks for standard storage class.
## If the PV uses a different storage class, specify that here.
storageClass: "nfs"
storageClass: "nfs-csi"
#volumeName: "minio"
accessMode: ReadWriteMany
size: 500Gi
@@ -275,11 +275,11 @@ topologySpreadConstraints: []
## Add stateful containers to have security context, if enabled MinIO will run as this
## user and group NOTE: securityContext is only enabled if persistence.enabled=true
securityContext:
enabled: false
#runAsUser: 1000
#runAsGroup: 1000
#fsGroup: 1000
securityContext: #unavoidable to wd-mycloud all_squash to 501/1000. appropriate SCC has been applied to prevent future drift
enabled: true
runAsUser: 501
runAsGroup: 1000
fsGroup: 1000
#fsGroupChangePolicy: "OnRootMismatch"
containerSecurityContext: