diff options
author | 2020-03-22 16:16:01 +0000 | |
---|---|---|
committer | 2020-03-22 16:16:01 +0000 | |
commit | 0d2be209aff1c72a013d7d8982988358d6e94e66 (patch) | |
tree | 6b82fbf17fcaa9ce83d7809560210c89cf7f89e2 /kubernetes/sdc/charts/sdc-cs/templates/job.yaml | |
parent | cf6b7be25be96cb01340f6c146e144369061cdfc (diff) | |
parent | b137f7e426b7556a05d1222716d1870ce9dad72c (diff) |
Merge "Run SDC pods as non-root"
Diffstat (limited to 'kubernetes/sdc/charts/sdc-cs/templates/job.yaml')
-rw-r--r-- | kubernetes/sdc/charts/sdc-cs/templates/job.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/sdc/charts/sdc-cs/templates/job.yaml b/kubernetes/sdc/charts/sdc-cs/templates/job.yaml index 472975ff37..4e4aad46fc 100644 --- a/kubernetes/sdc/charts/sdc-cs/templates/job.yaml +++ b/kubernetes/sdc/charts/sdc-cs/templates/job.yaml @@ -57,9 +57,9 @@ spec: imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} volumeMounts: - name: {{ include "common.fullname" . }}-environments - mountPath: /root/chef-solo/environments/ + mountPath: /home/sdc/chef-solo/environments/ - name: {{ include "common.fullname" . }}-chef-cache - mountPath: /root/chef-solo/cache + mountPath: /home/sdc/chef-solo/cache env: - name: ENVNAME value: {{ .Values.global.env.name }} |