Mutate Resources
A mutate
rule can be used to modify matching resources and is written as either a RFC 6902 JSON Patch, a strategic merge patch, or as an overlay pattern.
Note
Overlay and patches methods are currently deprecated and scheduled for removal in Kyverno 1.5. Please use the patch strategic merge or RFC 6902 JSON Patch methods from now forward.By using a patch
in the JSONPatch - RFC 6902 format, you can make precise changes to the resource being created. A strategic merge patch
is useful for controlling merge behaviors on elements with lists. Using an overlay
is convenient for describing the desired state of the resource. Regardless of the method, a mutate
rule is used when an object needs to be modified in a given way.
Resource mutation occurs before validation, so the validation rules should not contradict the changes performed by the mutation section.
This policy sets the imagePullPolicy
to IfNotPresent
if the image tag is latest
:
1apiVersion: kyverno.io/v1
2kind: ClusterPolicy
3metadata:
4 name: set-image-pull-policy
5spec:
6 rules:
7 - name: set-image-pull-policy
8 match:
9 resources:
10 kinds:
11 - Pod
12 mutate:
13 overlay:
14 spec:
15 containers:
16 # match images which end with :latest
17 - (image): "*:latest"
18 # set the imagePullPolicy to "IfNotPresent"
19 imagePullPolicy: "IfNotPresent"
RFC 6902 JSONPatch
A JSON Patch, implemented as a mutation method called patchesJson6902
, provides a precise way to mutate resources and supports the following operations (in the op
field):
add
replace
remove
With Kyverno, the add
and replace
have the same behavior (i.e., both operations will add or replace the target element).
The patchesJson6902
method can be useful when a specific mutation is needed which cannot be performed by patchesStrategicMerge
. For example, when needing to mutate a specific object within an array, the index can be specified as part of a patchesJson6902
mutation rule.
One distinction between this and other mutation methods is that patchesJson6902
does not support the use of conditional anchors. Use preconditions instead. Also, mutations using patchesJson6902
to Pods directly is not supported as the rules are not converted to higher-level controllers such as Deployments and StatefulSets through the use of the auto-gen feature. Therefore, when writing such mutation rules for Pods, it may be necessary to create multiple rules to cover all relevant Pod controllers.
This patch policy adds, or replaces, entries in a ConfigMap with the name config-game
in any namespace.
1apiVersion: kyverno.io/v1
2kind: ClusterPolicy
3metadata:
4 name: policy-patch-cm
5spec:
6 rules:
7 - name: pCM1
8 match:
9 resources:
10 name: "config-game"
11 kinds:
12 - ConfigMap
13 mutate:
14 patchesJson6902: |-
15 - path: "/data/ship.properties"
16 op: add
17 value: |
18 type=starship
19 owner=utany.corp
20 - path: "/data/newKey1"
21 op: add
22 value: newValue1
If your ConfigMap has empty data, the following policy adds an entry to config-game
.
1apiVersion: kyverno.io/v1
2kind: ClusterPolicy
3metadata:
4 name: policy-add-cm
5spec:
6 rules:
7 - name: pCM1
8 match:
9 resources:
10 name: "config-game"
11 kinds:
12 - ConfigMap
13 mutate:
14 patchesJson6902: |-
15 - path: "/data"
16 op: add
17 value: {"ship.properties": "{\"type\": \"starship\", \"owner\": \"utany.corp\"}"}
This is an example of a patch that removes a label from a Secret:
1apiVersion: kyverno.io/v1
2kind: ClusterPolicy
3metadata:
4 name: policy-remove-label
5spec:
6 rules:
7 - name: "Remove unwanted label"
8 match:
9 resources:
10 kinds:
11 - Secret
12 mutate:
13 patchesJson6902: |-
14 - path: "/metadata/labels/purpose"
15 op: remove
This policy rule adds elements to a list. In this case, it adds a new busybox container and a command. Note that because the path
statement is a precise schema element, this will only work on a direct Pod and not higher-level objects such as Deployments.
1apiVersion: kyverno.io/v1
2kind: ClusterPolicy
3metadata:
4 name: insert-container
5spec:
6 rules:
7 - name: insert-container
8 match:
9 resources:
10 kinds:
11 - Pod
12 mutate:
13 patchesJson6902: |-
14 - op: add
15 path: "/spec/containers/1"
16 value: {"name":"busybox","image":"busybox:latest"}
17 - op: add
18 path: "/spec/containers/1/command"
19 value:
20 - ls
Note
Mutations usingpatchesJson6902
which match on Pods are not translated to higher-level Pod controllers as noted above.
When needing to append an object to an array of objects, for example in pod.spec.tolerations
, use a dash (-
) at the end of the path.
1mutate:
2 patchesJson6902: |-
3 - op: add
4 path: "/spec/tolerations/-"
5 value: {"key":"networkzone","operator":"Equal","value":"dmz","effect":"NoSchedule"}
JSON Patch uses JSON Pointer to reference keys, and keys with tilde (~
) and forward slash (/
) characters need to be escaped with ~0
and ~1
, respectively. For example, the following adds an annotation with the key of config.linkerd.io/skip-outbound-ports
with the value of "8200"
.
1- op: add
2 path: /spec/template/metadata/annotations/config.linkerd.io~1skip-outbound-ports
3 value: "8200"
Some other capabilities of the patchesJson6902
method include:
- Adding non-existent paths
- Adding non-existent arrays
- Adding an element to the end of an array (use negative index
-1
)
Strategic Merge Patch
The kubectl
command uses a strategic merge patch with special directives to control element merge behaviors. Kyverno supports this style of patch to mutate resources. The patchStrategicMerge
overlay resolves to a partial resource definition.
This policy adds a new container to the Pod, sets the imagePullPolicy
, adds a command, and sets a label with the key of name
and value set to the name of the Pod from AdmissionReview data. Once again, the overlay in this case names a specific schema path which is relevant only to a Pod and not higher-level resources like a Deployment.
1apiVersion: kyverno.io/v1
2kind: ClusterPolicy
3metadata:
4 name: strategic-merge-patch
5spec:
6 rules:
7 - name: set-image-pull-policy-add-command
8 match:
9 resources:
10 kinds:
11 - Pod
12 mutate:
13 patchStrategicMerge:
14 metadata:
15 labels:
16 name: "{{request.object.metadata.name}}"
17 spec:
18 containers:
19 - name: "nginx"
20 image: "nginx:latest"
21 imagePullPolicy: "Never"
22 command:
23 - ls
Note that when using patchStrategicMerge
to mutate the pod.spec.containers[]
array, the name
key must be specified as a conditional anchor (i.e., (name): "*"
) in order for the merge to occur on other fields.
Mutate Overlay
A mutation overlay describes the desired form of resource. The existing resource values are replaced with the values specified in the overlay. If a value is specified in the overlay but not present in the target resource, then it will be added to the resource.
The overlay cannot be used to delete values in a resource: use patches for this purpose.
The following mutation overlay will add (or replace) the memory request and limit to 10Gi for every Pod with a label memory=high
:
1apiVersion: kyverno.io/v1
2kind: ClusterPolicy
3metadata:
4 name: policy-change-memory-limit
5spec:
6 rules:
7 - name: "Set memory to 10Gi"
8 match:
9 resources:
10 kinds:
11 - Pod
12 selector:
13 matchLabels:
14 memory: high
15 mutate:
16 overlay:
17 spec:
18 containers:
19 # The wildcard * will match all containers. This `name` field is not specifically required
20 # but is included for instructional purposes.
21 - (name): "*"
22 resources:
23 requests:
24 memory: "10Gi"
25 limits:
26 memory: "10Gi"
Working with lists
Applying overlays to a list type is fairly straightforward: new items will be added to the list unless they already exist. For example, the next overlay will add the IP “192.168.10.172” to all addresses in all Endpoints:
1apiVersion: kyverno.io/v1
2kind: ClusterPolicy
3metadata:
4 name: policy-endpoints
5spec:
6 rules:
7 - name: "Add IP to subsets"
8 match:
9 resources:
10 kinds:
11 - Endpoints
12 mutate:
13 overlay:
14 subsets:
15 - addresses:
16 - ip: 192.168.42.172
Conditional logic using anchors
Like with validate
rules, conditional anchors are supported on mutate
rules. Refer to the anchors section for more general information on conditionals.
An anchor field, marked by parentheses and an optional preceding character, allows conditional processing for mutations.
The mutate overlay rules support two types of anchors:
Anchor | Tag | Behavior |
---|---|---|
Conditional | () | Use the tag and value as an “if” condition |
Add if not present | +() | Add the tag value if the tag is not already present |
The anchors values support wildcards:
*
- matches zero or more alphanumeric characters?
- matches a single alphanumeric character
Note that conditional anchors are only supported with the overlay
and patchStrategicMerge
mutation methods.
Conditional anchor
A conditional anchor evaluates to true
if the anchor tag exists and if the value matches the specified value. Processing stops if a tag does not exist or when the value does not match. Once processing stops, any child elements or any remaining siblings in a list will not be processed.
For example, this overlay will add or replace the value 6443
for the port
field, for all ports with a name value that starts with “secure”:
1apiVersion: kyverno.io/v1
2kind: ClusterPolicy
3metadata:
4 name: policy-set-port
5spec:
6 rules:
7 - name: "Set port"
8 match:
9 resources:
10 kinds :
11 - Endpoints
12 mutate:
13 overlay:
14 subsets:
15 - ports:
16 - (name): "secure*"
17 port: 6443
If the anchor tag value is an object or array, the entire object or array must match. In other words, the entire object or array becomes part of the “if” clause. Nested conditional anchor tags are not supported.
Add if not present anchor
A variation of an anchor is to add a field value if it is not already defined. This is done by using the add anchor (short for “add if not present” anchor) with the notation +(...)
for the tag.
An add anchor is processed as part of applying the mutation. Typically, every non-anchor tag-value is applied as part of the mutation. If the add anchor is set on a tag, the tag and value are only applied if they do not exist in the resource.
For example, this policy matches and mutates pods with an emptyDir
volume to add the safe-to-evict
annotation if it is not specified.
1apiVersion: kyverno.io/v1
2kind: ClusterPolicy
3metadata:
4 name: add-safe-to-evict
5 annotations:
6 pod-policies.kyverno.io/autogen-controllers: none
7spec:
8 rules:
9 - name: "annotate-empty-dir"
10 match:
11 resources:
12 kinds:
13 - Pod
14 mutate:
15 overlay:
16 metadata:
17 annotations:
18 +(cluster-autoscaler.kubernetes.io/safe-to-evict): true
19 spec:
20 volumes:
21 - (emptyDir): {}
Anchor processing flow
The anchor processing behavior for mutate conditions is as follows:
-
First, all conditional anchors are processed. Processing stops when the first conditional anchor returns a
false
. Mutation proceeds only of all conditional anchors return atrue
. Note that for conditional anchor tags with complex (object or array) values, the entire value (child) object is treated as part of the condition as explained above. -
Next, all tag-values without anchors and all add anchor tags are processed to apply the mutation.
Mutate Rule Ordering (Cascading)
In some cases, it might be desired to have multiple levels of mutation rules apply to incoming resources. The match
statement in rule A would apply a mutation to the resource, and the result of that mutation would trigger a match
statement in rule B that would apply a second mutation. In such cases, Kyverno can accommodate more complex mutation rules, however rule ordering matters to guarantee consistent results.
For example, assume you wished to assign a label to each incoming Pod describing the type of application it contained. For those with an image
having the string either cassandra
or mongo
you wished to apply the label type=database
. This could be done with the following sample policy.
1apiVersion: kyverno.io/v1
2kind: ClusterPolicy
3metadata:
4 name: database-type-labeling
5spec:
6 rules:
7 - name: assign-type-database
8 match:
9 resources:
10 kinds:
11 - Pod
12 mutate:
13 patchStrategicMerge:
14 metadata:
15 labels:
16 type: database
17 spec:
18 (containers):
19 - (image): "*cassandra* | *mongo*"
Also, assume that for certain application types a backup strategy needs to be defined. For those applications where type=database
, this would be designated with an additional label with the key name of backup-needed
and value of either yes
or no
. The label would only be added if not already specified since operators can choose if they want protection or not. This policy would be defined like the following.
1apiVersion: kyverno.io/v1
2kind: ClusterPolicy
3metadata:
4 name: database-backup-labeling
5spec:
6 rules:
7 - name: assign-backup-database
8 match:
9 resources:
10 kinds:
11 - Pod
12 selector:
13 matchLabels:
14 type: database
15 mutate:
16 patchStrategicMerge:
17 metadata:
18 labels:
19 +(backup-needed): "yes"
In such a case, Kyverno is able to perform cascading mutations whereby an incoming Pod that matched in the first rule and was mutated would potentially be further mutated by the second rule. In these cases, the rules must be ordered from top to bottom in the order of their dependencies and stored within the same policy. The resulting policy definition would look like the following:
1apiVersion: kyverno.io/v1
2kind: ClusterPolicy
3metadata:
4 name: database-protection
5spec:
6 rules:
7 - name: assign-type-database
8 match:
9 resources:
10 kinds:
11 - Pod
12 mutate:
13 patchStrategicMerge:
14 metadata:
15 labels:
16 type: database
17 spec:
18 (containers):
19 - (image): "*cassandra* | *mongo*"
20 - name: assign-backup-database
21 match:
22 resources:
23 kinds:
24 - Pod
25 selector:
26 matchLabels:
27 type: database
28 mutate:
29 patchStrategicMerge:
30 metadata:
31 labels:
32 +(backup-needed): "yes"
Test the cascading mutation policy by creating a Pod using the Cassandra image.
1$ kubectl run cassandra --image=cassandra:latest
2pod/cassandra created
Perform a get
or describe
on the Pod to see the result of the metadata.
1$ kubectl describe po cassandra
2Name: cassandra
3Namespace: default
4<snip>
5Labels: backup-needed=yes
6 run=cassandra
7 type=database
8<snip>
As can be seen, both type=database
and backup-needed=yes
were applied according to the mutation rules.
Verify that applying your own backup-needed
label with the value of no
triggers the first mutation rule but not the second.
1$ kubectl run cassandra --image=cassandra:latest --labels backup-needed=no
Perform another get
or describe
to verify the backup-needed
label was not altered by the mutation rule.
1$ kubectl describe po cassandra
2Name: cassandra
3Namespace: default
4<snip>
5Labels: backup-needed=no
6 type=database
7<snip>
foreach
The foreach
declaration simplifies mutation of sub-elements in resource declarations, for example Containers in a Pod.
A foreach
declaration can contain multiple entries to process different sub-elements e.g. one to process a list of containers and another to process the list of initContainers in a Pod.
A foreach
must contain a list
attribute that defines the list of elements it processes and a patchStrategicMerge
declaration. For example, iterating over the list of containers in a Pod is performed using this list
declaration:
1list: request.object.spec.containers
2patchStrategicMerge:
3 spec:
4 containers:
5 ...
When a foreach
is processed, the Kyverno engine will evaluate list
as a JMESPath expression to retrieve zero or more sub-elements for further processing.
A variable element
is added to the processing context on each iteration. This allows referencing data in the element using element.<name>
where name is the attribute name. For example, using the list request.object.spec.containers
when the request.object
is a Pod allows referencing the container image as element.image
within a foreach
.
Each foreach
declaration can optionally contain the following declarations:
- Context: to add additional external data only available per loop iteration.
- Preconditions: to control when a loop iteration is skipped
Here is a complete example that mutates the image registry address to a trusted registry:
1apiVersion : kyverno.io/v1
2kind: ClusterPolicy
3metadata:
4 name: mutate-imagess
5spec:
6 rules:
7 - name: update-registry
8 match:
9 resources:
10 kinds:
11 - Pod
12 mutate:
13 foreach:
14 - list: "request.object.spec.initContainers"
15 patchStrategicMerge:
16 spec:
17 containers:
18 - name: "{{ element.name }}"
19 image: "{{ registry.io/{{images.containers.{{element.name}}.path}}:{{images.containers.{{element.name}}.tag}} }}"
20 - list: "request.object.spec.containers"
21 patchStrategicMerge:
22 spec:
23 containers:
24 - name: "{{ element.name }}"
25 image: "{{ registry.io/{{images.containers.{{element.name}}.path}}:{{images.containers.{{element.name}}.tag}} }}"
Note that the patchStrategicMerge
is applied to the request.object
. Hence, the patch needs to begin with spec
.