diff --git a/stable/handbrake/3.1.2/ix_values.yaml b/stable/handbrake/3.1.2/ix_values.yaml index 0fb20570d7f..23c3c4086fe 100644 --- a/stable/handbrake/3.1.2/ix_values.yaml +++ b/stable/handbrake/3.1.2/ix_values.yaml @@ -9,6 +9,13 @@ image: tag: v1.23.2 pullPolicy: IfNotPresent +# Configure the Security Context for the Pod +podSecurityContext: + runAsNonRoot: false + runAsUser: 0 + runAsGroup: 0 + fsGroup: 0 + supplementalGroups: [24, 44, 107] #All values here are set as the docker defaults. envTpl: diff --git a/stable/handbrake/3.1.2/questions.yaml b/stable/handbrake/3.1.2/questions.yaml index ff0996bdaeb..e03a9366a4f 100644 --- a/stable/handbrake/3.1.2/questions.yaml +++ b/stable/handbrake/3.1.2/questions.yaml @@ -579,54 +579,3 @@ questions: schema: type: boolean default: false - # Set Pod Security Policy - - variable: podSecurityContext - group: "Advanced" - label: "Pod Security Context" - schema: - type: dict - attrs: - - variable: runAsNonRoot - label: "runAsNonRoot" - schema: - type: boolean - default: false - - variable: runAsUser - label: "runAsUser" - description: "The UserID of the user running the application" - schema: - type: int - default: 0 - - variable: runAsGroup - label: "runAsGroup" - description: The groupID this App of the user running the application" - schema: - type: int - default: 0 - - variable: supplementalGroups - label: "supplementalGroups" - description: "Additional groups this App needs access to" - schema: - type: list - default: [24, 44, 107] - items: - - variable: Group - label: "Group" - schema: - type: int - default: 568 - - variable: fsGroup - label: "The group that should own ALL storage." - schema: - type: int - default: 0 - - variable: fsGroupChangePolicy - label: "When should we chmod/chown?" - schema: - type: string - default: "OnRootMismatch" - enum: - - value: "OnRootMismatch" - description: "OnRootMismatch" - - value: "Always" - description: "Always"