wiremind-helm-charts icon indicating copy to clipboard operation
wiremind-helm-charts copied to clipboard

cerebro securityContext - empty object not working

Open AbbasHallal opened this issue 2 years ago • 0 comments

I am installing cerebro on openshift and I want to set securityContext to null and bind the deployment to default service account, serviceAccountName: default so that I can get random number from the allowed range. However this is not working as expected as it's still setting the default values originally defined see
values.yaml:

securityContext: {}

Deployment:

spec:
  securityContext:
    runAsNonRoot: true
    runAsGroup: 1000
    runAsUser: 1000

AbbasHallal avatar Aug 08 '22 13:08 AbbasHallal