We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a42e168 commit 3340be7Copy full SHA for 3340be7
1 file changed
charts/intel/templates/deployment.yaml
@@ -45,22 +45,22 @@ spec:
45
{{- if .Values.openshift.enabled }}
46
- |
47
set -eu
48
+ umask 002
49
for d in \
- /run \
50
/var/log/nginx \
51
/var/cache/nginx
52
do
53
- install -d -m 0775 "$d"
+ install -d -m 2775 "$d"
54
done
55
{{- else }}
56
57
58
59
60
61
62
63
64
65
chown -R {{ default 1000 .Values.securityContext.runAsUser }}:{{ default 1000 .Values.securityContext.runAsGroup | default 1000 }} \
66
/run /var/log/nginx /var/cache/nginx
0 commit comments