mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
Fixes #4317 #8568 Signed-off-by: Trey Dockendorf <tdockendorf@osc.edu> Co-authored-by: shuting <shuting@nirmata.com>
57 lines
2.1 KiB
YAML
57 lines
2.1 KiB
YAML
{{- $name := "disallow-host-path" }}
|
|
{{- if eq (include "kyverno-policies.podSecurityBaseline" (merge (dict "name" $name) .)) "true" }}
|
|
apiVersion: kyverno.io/v1
|
|
kind: {{ .Values.policyKind }}
|
|
metadata:
|
|
name: {{ $name }}
|
|
annotations:
|
|
{{- with .Values.autogenControllers }}
|
|
pod-policies.kyverno.io/autogen-controllers: {{ . }}
|
|
{{- end }}
|
|
policies.kyverno.io/title: Disallow hostPath
|
|
policies.kyverno.io/category: Pod Security Standards (Baseline)
|
|
{{- if .Values.podSecuritySeverity }}
|
|
policies.kyverno.io/severity: {{ .Values.podSecuritySeverity }}
|
|
{{- end }}
|
|
policies.kyverno.io/subject: Pod,Volume
|
|
kyverno.io/kyverno-version: 1.6.0
|
|
kyverno.io/kubernetes-version: "1.22-1.23"
|
|
policies.kyverno.io/description: >-
|
|
HostPath volumes let Pods use host directories and volumes in containers.
|
|
Using host resources can be used to access shared data or escalate privileges
|
|
and should not be allowed. This policy ensures no hostPath volumes are in use.
|
|
labels: {{ include "kyverno-policies.labels" . | nindent 4 }}
|
|
spec:
|
|
{{- with index .Values "validationFailureActionByPolicy" $name }}
|
|
validationFailureAction: {{ toYaml . }}
|
|
{{- else }}
|
|
validationFailureAction: {{ .Values.validationFailureAction }}
|
|
{{- end }}
|
|
{{- with concat (index .Values "validationFailureActionOverrides" "all") (default list (index .Values "validationFailureActionOverrides" $name)) }}
|
|
validationFailureActionOverrides: {{ toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
background: {{ .Values.background }}
|
|
failurePolicy: {{ .Values.failurePolicy }}
|
|
rules:
|
|
- name: host-path
|
|
match:
|
|
any:
|
|
- resources:
|
|
kinds:
|
|
- Pod
|
|
{{- with index .Values "policyExclude" $name }}
|
|
exclude:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with index .Values "policyPreconditions" $name }}
|
|
preconditions:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
validate:
|
|
message: >-
|
|
HostPath volumes are forbidden. The field spec.volumes[*].hostPath must be unset.
|
|
pattern:
|
|
spec:
|
|
=(volumes):
|
|
- X(hostPath): "null"
|
|
{{- end }}
|