Fix puppeteer permission issue
This commit is contained in:
parent
da30585e5a
commit
0fdf7c7edf
|
|
@ -23,6 +23,17 @@ spec:
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: app-volume
|
- name: app-volume
|
||||||
mountPath: /app
|
mountPath: /app
|
||||||
|
- name: chown-permissions
|
||||||
|
image: alpine
|
||||||
|
command:
|
||||||
|
- /bin/sh
|
||||||
|
- -c
|
||||||
|
- "chown -R 999:999 /app && chown -R 999:999 /secrets"
|
||||||
|
volumeMounts:
|
||||||
|
- name: app-volume
|
||||||
|
mountPath: /app
|
||||||
|
- name: utility-secrets
|
||||||
|
mountPath: /secrets
|
||||||
containers:
|
containers:
|
||||||
- name: utility-agent
|
- name: utility-agent
|
||||||
# We use a custom puppeteer-compatible image or just build one.
|
# We use a custom puppeteer-compatible image or just build one.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue