Create values.yaml from Helm Repository
helm show values kedacore/keda > values.yamlnano values.yaml# line 404
# -- [Security context] for all containers
# @default -- [See below](#KEDA-is-secure-by-default)
securityContext:
# -- [Security context] of the operator container
# @default -- [See below](#KEDA-is-secure-by-default)
operator:
capabilities:
drop:
- ALL
allowPrivilegeEscalation: false
runAsUser: 1000
runAsNonRoot: true
readOnlyRootFilesystem: true
seccompProfile:
type: RuntimeDefault
# -- [Security context] of the metricServer container
# @default -- [See below](#KEDA-is-secure-by-default)
metricServer:
capabilities:
drop:
- ALL
allowPrivilegeEscalation: false
runAsUser: 1000
runAsNonRoot: true
readOnlyRootFilesystem: true
seccompProfile:
type: RuntimeDefault
# -- [Security context] of the admission webhooks container
# @default -- [See below](#KEDA-is-secure-by-default)
webhooks:
capabilities:
drop:
- ALL
allowPrivilegeEscalation: false
runAsUser: 1000
runAsNonRoot: true
readOnlyRootFilesystem: true
seccompProfile:
type: RuntimeDefaultLast updated
