mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 17:37:12 +00:00
23 lines
No EOL
502 B
YAML
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 |