mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
91adf68602
* feat(kyverno-policies): Add ability to set autogen behavior Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * fix(kyverno-policies): Fix missing labels Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * chore: Apply changes from code review - Update changelog annotations - Add test Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Update charts/kyverno-policies/Chart.yaml Signed-off-by: shuting <shutting06@gmail.com> * fix: Move test-autogen-none.yaml -> test-autogen-none-values.yaml Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * fix: Run make codegen-helm-all Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Signed-off-by: shuting <shutting06@gmail.com> Co-authored-by: shuting <shuting@nirmata.com> Co-authored-by: shuting <shutting06@gmail.com>
102 lines
3.3 KiB
YAML
102 lines
3.3 KiB
YAML
# -- Pod Security Standard profile (`baseline`, `restricted`, `privileged`, `custom`).
|
|
# For more info https://kyverno.io/policies/pod-security.
|
|
podSecurityStandard: baseline
|
|
|
|
# -- Pod Security Standard (`low`, `medium`, `high`).
|
|
podSecuritySeverity: medium
|
|
|
|
# -- Policies to include when `podSecurityStandard` is `custom`.
|
|
podSecurityPolicies: []
|
|
|
|
# -- Additional policies to include from `other`.
|
|
includeOtherPolicies: []
|
|
# - require-non-root-groups
|
|
|
|
# -- Additional policies to include from `restricted`.
|
|
includeRestrictedPolicies: []
|
|
# - require-run-as-non-root-user
|
|
|
|
# -- API server behavior if the webhook fails to respond ('Ignore', 'Fail')
|
|
# For more info: https://kyverno.io/docs/writing-policies/policy-settings/
|
|
failurePolicy: Fail
|
|
|
|
# -- Validation failure action (`audit`, `enforce`).
|
|
# For more info https://kyverno.io/docs/writing-policies/validate.
|
|
validationFailureAction: audit
|
|
|
|
# -- Define validationFailureActionByPolicy for specific policies.
|
|
# Override the defined `validationFailureAction` with a individual validationFailureAction for individual Policies.
|
|
validationFailureActionByPolicy: {}
|
|
# disallow-capabilities-strict: enforce
|
|
# disallow-host-path: enforce
|
|
# disallow-host-ports: enforce
|
|
|
|
# -- Define validationFailureActionOverrides for specific policies.
|
|
# The overrides for `all` will apply to all policies.
|
|
validationFailureActionOverrides:
|
|
all: []
|
|
# all:
|
|
# - action: audit
|
|
# namespaces:
|
|
# - ingress-nginx
|
|
# disallow-host-path:
|
|
# - action: audit
|
|
# namespaces:
|
|
# - fluent
|
|
|
|
# -- Exclude resources from individual policies.
|
|
# Policies with multiple rules can have individual rules excluded by using the name of the rule as the key in the `policyExclude` map.
|
|
policyExclude: {}
|
|
# # Exclude resources from individual policies
|
|
# disallow-host-path:
|
|
# any:
|
|
# - resources:
|
|
# kinds:
|
|
# - Pod
|
|
# namespaces:
|
|
# - fluent
|
|
# # Policies with multiple rules can have individual rules excluded
|
|
# adding-capabilities-strict:
|
|
# any:
|
|
# - resources:
|
|
# kinds:
|
|
# - Pod
|
|
# namespaces:
|
|
# - kube-system
|
|
# -- Add preconditions to individual policies.
|
|
# Policies with multiple rules can have individual rules excluded by using the name of the rule as the key in the `policyPreconditions` map.
|
|
policyPreconditions: {}
|
|
# # Exclude resources from individual policies
|
|
# require-run-as-non-root-user:
|
|
# all:
|
|
# - key: "{{ request.object.metadata.name }}"
|
|
# operator: NotEquals
|
|
# value: "dcgm-exporter*"
|
|
# # Policies with multiple rules can have individual rules excluded
|
|
# require-drop-all:
|
|
# any:
|
|
# - key: "{{ request.object.metadata.name }}"
|
|
# operator: NotEquals
|
|
# value: "dcgm-exporter*"
|
|
# adding-capabilities-strict:
|
|
# all:
|
|
# - key: "{{ request.object.metadata.name }}"
|
|
# operator: NotEquals
|
|
# value: "dcgm-exporter*"
|
|
|
|
# -- Customize the target Pod controllers for the auto-generated rules. (Eg. `none`, `Deployment`, `DaemonSet,Deployment,StatefulSet`)
|
|
# For more info https://kyverno.io/docs/writing-policies/autogen/.
|
|
autogenControllers: ""
|
|
|
|
# -- Name override.
|
|
nameOverride:
|
|
|
|
# -- Additional labels.
|
|
customLabels: {}
|
|
|
|
# -- Policies background mode
|
|
background: true
|
|
|
|
# -- Kyverno version
|
|
# The default of "autodetect" will try to determine the currently installed version from the deployment
|
|
kyvernoVersion: autodetect
|