mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-05 23:46:56 +00:00
17 lines
352 B
YAML
17 lines
352 B
YAML
|
apiVersion: kyverno.io/v1
|
||
|
kind: ClusterPolicy
|
||
|
metadata:
|
||
|
name: no-loadbalancers
|
||
|
spec:
|
||
|
validationFailureAction: audit
|
||
|
rules:
|
||
|
- name: no-LoadBalancer
|
||
|
match:
|
||
|
resources:
|
||
|
kinds:
|
||
|
- Service
|
||
|
validate:
|
||
|
message: "Service of type LoadBalancer is not allowed."
|
||
|
pattern:
|
||
|
spec:
|
||
|
type: "!LoadBalancer"
|