run Deepstack as root (#1084)

This commit is contained in:
Stavros Kois
2021-10-03 12:01:19 +03:00
committed by GitHub
parent 71341bb6c6
commit 44a1b5476b
2 changed files with 12 additions and 4 deletions
@@ -621,7 +621,7 @@ questions:
label: "ReadOnly Root Filesystem"
schema:
type: boolean
default: true
default: false
- variable: allowPrivilegeEscalation
label: "Allow Privilege Escalation"
schema:
@@ -631,7 +631,7 @@ questions:
label: "runAsNonRoot"
schema:
type: boolean
default: true
default: false
- variable: podSecurityContext
group: "Security and Permissions"
@@ -644,13 +644,13 @@ questions:
description: "The UserID of the user running the application"
schema:
type: int
default: 568
default: 0
- variable: runAsGroup
label: "runAsGroup"
description: The groupID this App of the user running the application"
schema:
type: int
default: 568
default: 0
- variable: fsGroup
label: "fsGroup"
description: "The group that should own ALL storage."
+8
View File
@@ -12,6 +12,14 @@ service:
main:
port: 5000
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
envTpl:
# Permissions Settings
USER_ID: "{{ .Values.env.PUID }}"