mirror of
https://github.com/kyverno/kyverno.git
synced 2025-04-14 00:06:45 +00:00
32 lines
No EOL
926 B
YAML
32 lines
No EOL
926 B
YAML
{{- if eq .Values.policyType "default" }}
|
|
apiVersion: kyverno.io/v1
|
|
kind: ClusterPolicy
|
|
metadata:
|
|
name: disallow-host-ports
|
|
annotations:
|
|
policies.kyverno.io/category: Pod Security Standards (Default)
|
|
policies.kyverno.io/description: >-
|
|
Access to host ports allows potential snooping of network traffic and should not be
|
|
allowed, or at minimum restricted to a known list.
|
|
spec:
|
|
validationFailureAction: audit
|
|
background: true
|
|
rules:
|
|
- name: host-ports
|
|
match:
|
|
resources:
|
|
kinds:
|
|
- Pod
|
|
validate:
|
|
message: >-
|
|
Use of host ports is disallowed. The fields spec.containers[*].ports[*].hostPort
|
|
and spec.initContainers[*].ports[*].hostPort must be empty.
|
|
pattern:
|
|
spec:
|
|
=(initContainers):
|
|
- =(ports):
|
|
- X(hostPort): 0
|
|
containers:
|
|
- =(ports):
|
|
- X(hostPort): 0
|
|
{{- end -}} |