Skip to content

Commit 498a017

Browse files
authored
Merge pull request #720 from snyk/fix/volume-permissions
fix: add world read/write permissions to temp volume
2 parents 26d856f + 1bb63e1 commit 498a017

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snyk-monitor/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ spec:
2323
initContainers:
2424
- name: volume-permissions
2525
image: "{{ .Values.initContainerImage.repository }}:{{ .Values.initContainerImage.tag }}"
26-
command : ['sh', '-c', 'chmod -R g+rwX /var/tmp || true']
26+
command : ['sh', '-c', 'chmod -R go+rwX /var/tmp || true']
2727
volumeMounts:
2828
- name: temporary-storage
2929
mountPath: "/var/tmp"

0 commit comments

Comments
 (0)