1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-10 01:46:55 +00:00
kyverno/examples/demo/mutate_patch/policy_patch.yaml

23 lines
502 B
YAML
Raw Normal View History

2019-06-22 16:05:06 -07:00
apiVersion : kyverno.io/v1alpha1
kind : Policy
metadata :
name : policy-endpoints
spec :
rules:
2019-06-22 16:08:11 -07:00
- name: demo-ep
2019-06-22 16:05:06 -07:00
resource:
kinds :
- Endpoints
selector:
matchLabels:
label : test
mutate:
patches:
# add a new label
2019-06-24 10:42:38 -07:00
- path: /metadata/labels/app.type
2019-06-22 16:05:06 -07:00
op: add
2019-06-24 10:42:38 -07:00
value: dev
2019-06-22 16:05:06 -07:00
# replace port
2019-06-23 16:28:43 -07:00
- path : /subsets/0/ports/0/port
2019-06-22 16:05:06 -07:00
op : replace
value: 9663