mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
15 lines
281 B
YAML
15 lines
281 B
YAML
apiVersion : kyverno.io/v1alpha1
|
|
kind: Policy
|
|
metadata:
|
|
name: check-node-port
|
|
spec:
|
|
rules:
|
|
- name: check-node-port
|
|
resource:
|
|
kinds:
|
|
- Service
|
|
validate:
|
|
message: "NodePort type is not allowed"
|
|
pattern:
|
|
spec:
|
|
type: "!NodePort"
|