Write access for non root users on file store using Kubernetes in GCP

237 Views Asked by At

How to setup Kubernetes so that non root user can write inside the file store in GCP.

I tried below configuration in yaml file but still non root user is not able to write.

securityContext:
    runAsUser: 1000
    runAsGroup: 1000
    fsGroup: 1000
0

There are 0 best solutions below