mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
22 lines
No EOL
479 B
YAML
22 lines
No EOL
479 B
YAML
apiVersion : kyverno.io/v1alpha1
|
|
kind : Policy
|
|
metadata :
|
|
name : policy-endpoints
|
|
spec :
|
|
rules:
|
|
- name: pEP
|
|
match:
|
|
resources:
|
|
kinds :
|
|
- Endpoints
|
|
selector:
|
|
matchLabels:
|
|
label : test
|
|
mutate:
|
|
patches:
|
|
- path : "/subsets/0/ports/0/port"
|
|
op : replace
|
|
value: 9663
|
|
- path : "/metadata/labels/isMutated"
|
|
op: add
|
|
value: "true" |