1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-09 01:16:55 +00:00
kyverno/examples/demo/mutate_patch/policy_patch.yaml
2019-06-24 10:42:38 -07:00

23 lines
No EOL
502 B
YAML

apiVersion : kyverno.io/v1alpha1
kind : Policy
metadata :
name : policy-endpoints
spec :
rules:
- name: demo-ep
resource:
kinds :
- Endpoints
selector:
matchLabels:
label : test
mutate:
patches:
# add a new label
- path: /metadata/labels/app.type
op: add
value: dev
# replace port
- path : /subsets/0/ports/0/port
op : replace
value: 9663