mirror of
https://github.com/nold360/hive-apps
synced 2024-12-22 21:51:20 +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:
|
||||
- name: config
|
||||
mountPath: /config
|
||||
securityContext:
|
||||
runAsNonRoot: true
|
||||
privileged: false
|
||||
readOnlyRootFilesystem: true
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities:
|
||||
drop:
|
||||
- ALL
|
||||
|
||||
additionalContainers:
|
||||
deluge-daemon:
|
||||
|
@ -117,3 +125,11 @@ additionalContainers:
|
|||
mountPath: /downloads
|
||||
- name: cache
|
||||
mountPath: /home/deluge/.cache
|
||||
securityContext:
|
||||
runAsNonRoot: true
|
||||
privileged: false
|
||||
readOnlyRootFilesystem: true
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities:
|
||||
drop:
|
||||
- ALL
|
||||
|
|
Loading…
Reference in a new issue