mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-07 00:17:13 +00:00
17 lines
419 B
YAML
17 lines
419 B
YAML
apiVersion : policy.nirmata.io/v1alpha1
|
|
kind : Policy
|
|
metadata :
|
|
name : policy-pvc
|
|
spec :
|
|
failurePolicy: stopOnError
|
|
rules:
|
|
- resource:
|
|
kind : PersistentVolumeClaim
|
|
matchLabels:
|
|
originalLabel: isHere
|
|
patch:
|
|
- path: "/metadata/labels/originalLabel"
|
|
op: remove
|
|
- path : "/spec/resources/requests/storage"
|
|
op : replace
|
|
value: "6Gi"
|