diff --git a/charts/kyverno-policies/Chart.yaml b/charts/kyverno-policies/Chart.yaml index bf54afc11a..732cbeecdc 100644 --- a/charts/kyverno-policies/Chart.yaml +++ b/charts/kyverno-policies/Chart.yaml @@ -27,3 +27,5 @@ annotations: description: Support for artifacthub.io/changes annotation - kind: fixed description: Fix Kyverno version check when image tag contains registry port number + - kind: fixed + description: Ensure preconditions are present with default values diff --git a/charts/kyverno-policies/templates/restricted/disallow-capabilities-strict.yaml b/charts/kyverno-policies/templates/restricted/disallow-capabilities-strict.yaml index d62d0b0d13..0284190ea6 100644 --- a/charts/kyverno-policies/templates/restricted/disallow-capabilities-strict.yaml +++ b/charts/kyverno-policies/templates/restricted/disallow-capabilities-strict.yaml @@ -35,7 +35,9 @@ spec: exclude: {{- toYaml . | nindent 8 }} {{- end }} - {{- with merge (index .Values "policyPreconditions" "require-drop-all") (index .Values "policyPreconditions" $name) }} + {{- $preconditions1 := merge (index .Values "policyPreconditions" "require-drop-all") (index .Values "policyPreconditions" $name) }} + {{- if $preconditions1 }} + {{- with $preconditions1 }} preconditions: {{- if .all }} all: @@ -47,6 +49,13 @@ spec: {{- toYaml . | nindent 8 }} {{- end }} {{- end }} + {{- else }} + preconditions: + all: + - key: "{{`{{ request.operation }}`}}" + operator: NotEquals + value: DELETE + {{- end }} validate: message: >- Containers must drop `ALL` capabilities. @@ -68,7 +77,9 @@ spec: exclude: {{- toYaml . | nindent 8 }} {{- end }} - {{- with merge (index .Values "policyPreconditions" "adding-capabilities-strict") (index .Values "policyPreconditions" $name) }} + {{- $preconditions2 := merge (index .Values "policyPreconditions" "adding-capabilities-strict") (index .Values "policyPreconditions" $name) }} + {{- if $preconditions2 }} + {{- with $preconditions2 }} preconditions: {{- if .all }} all: @@ -80,6 +91,13 @@ spec: {{- toYaml . | nindent 8 }} {{- end }} {{- end }} + {{- else }} + preconditions: + all: + - key: "{{`{{ request.operation }}`}}" + operator: NotEquals + value: DELETE + {{- end }} validate: message: >- Any capabilities added other than NET_BIND_SERVICE are disallowed.