mirror of
https://github.com/nold360/hive-apps
synced 2024-12-22 21:21:12 +00:00
fix(deluge): securitycontext
This commit is contained in:
parent
18b8a1ca03
commit
08362fca3c
1 changed files with 16 additions and 0 deletions
|
@ -106,6 +106,14 @@ initContainers:
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: config
|
- name: config
|
||||||
mountPath: /config
|
mountPath: /config
|
||||||
|
securityContext:
|
||||||
|
runAsNonRoot: true
|
||||||
|
privileged: false
|
||||||
|
readOnlyRootFilesystem: true
|
||||||
|
allowPrivilegeEscalation: false
|
||||||
|
capabilities:
|
||||||
|
drop:
|
||||||
|
- ALL
|
||||||
|
|
||||||
additionalContainers:
|
additionalContainers:
|
||||||
deluge-daemon:
|
deluge-daemon:
|
||||||
|
@ -117,3 +125,11 @@ additionalContainers:
|
||||||
mountPath: /downloads
|
mountPath: /downloads
|
||||||
- name: cache
|
- name: cache
|
||||||
mountPath: /home/deluge/.cache
|
mountPath: /home/deluge/.cache
|
||||||
|
securityContext:
|
||||||
|
runAsNonRoot: true
|
||||||
|
privileged: false
|
||||||
|
readOnlyRootFilesystem: true
|
||||||
|
allowPrivilegeEscalation: false
|
||||||
|
capabilities:
|
||||||
|
drop:
|
||||||
|
- ALL
|
||||||
|
|
Loading…
Reference in a new issue