diff --git a/charts/stable/littlelink/SCALE/questions.yaml b/charts/stable/littlelink/SCALE/questions.yaml index 7867fef556a..45fdd23d8f4 100644 --- a/charts/stable/littlelink/SCALE/questions.yaml +++ b/charts/stable/littlelink/SCALE/questions.yaml @@ -664,6 +664,41 @@ questions: default: "" required: true + - variable: securityContext + group: "Security and Permissions" + label: "Security Context" + schema: + type: dict + attrs: + - variable: privileged + label: "Enable privileged mode for Common-Chart based charts" + schema: + type: boolean + default: false + + - variable: podSecurityContext + group: "Security and Permissions" + label: "Pod Security Context" + schema: + type: dict + attrs: + - variable: runAsNonRoot + label: "runAsNonRoot" + schema: + type: boolean + default: true + - variable: runAsUser + label: "runAsUser" + description: "The UserID of the user running the application" + schema: + type: int + default: 568 + - variable: runAsGroup + label: "runAsGroup" + description: The groupID this App of the user running the application" + schema: + type: int + default: 568 - variable: resources group: "Resources and Devices" label: "" diff --git a/charts/stable/littlelink/values.yaml b/charts/stable/littlelink/values.yaml index 3d5f3cac7a9..ccba74ace27 100644 --- a/charts/stable/littlelink/values.yaml +++ b/charts/stable/littlelink/values.yaml @@ -40,3 +40,11 @@ littlelink: tiktok: "https://www.tiktok.com/@technotim" kit: "https://kit.co/technotim" footer: "thanks for stopping by!" + +securityContext: + privileged: false + +podSecurityContext: + runAsNonRoot: true + runAsUser: 568 + runAsGroup: 568