Mutating Admission Policy
Kubernetes v1.32 [alpha]
This page provides an overview of MutatingAdmissionPolicies.
What are MutatingAdmissionPolicies?
Mutating admission policies offer a declarative, in-process alternative to mutating admission webhooks.
Mutating admission policies use the Common Expression Language (CEL) to declare mutations to resources. Mutations can be defined either with an apply configuration that is merged using the server side apply merge strategy, or a JSON patch.
Mutating admission policies are highly configurable, enabling policy authors to define policies that can be parameterized and scoped to resources as needed by cluster administrators.
What resources make a policy
A policy is generally made up of three resources:
-
The MutatingAdmissionPolicy describes the abstract logic of a policy (think: "this policy sets a particular label to a particular value").
-
A parameter resource provides information to a MutatingAdmissionPolicy to make it a concrete statement (think "set the
owner
label to something likecompany.example.com
"). Parameter resources refer to Kubernetes resources, available in the Kubernetes API. They can be built-in types or extensions, such as a CustomResourceDefinition (CRD). For example, you can use a ConfigMap as a parameter. -
A MutatingAdmissionPolicyBinding links the above (MutatingAdmissionPolicy and parameter) resources together and provides scoping. If you only want to set an
owner
label forPods
, and not other API kinds, the binding is where you specify this mutation.
At least a MutatingAdmissionPolicy and a corresponding MutatingAdmissionPolicyBinding must be defined for a policy to have an effect.
If a MutatingAdmissionPolicy does not need to be configured via parameters, simply leave
spec.paramKind
in MutatingAdmissionPolicy not specified.
Getting Started with MutatingAdmissionPolicies
Mutating admission policy is part of the cluster control-plane. You should write and deploy them with great caution. The following describes how to quickly experiment with Mutating admission policy.
Create a MutatingAdmissionPolicy
The following is an example of a MutatingAdmissionPolicy. This policy mutates newly created Pods to have a sidecar container if it does not exist.
apiVersion: admissionregistration.k8s.io/v1alpha1
kind: MutatingAdmissionPolicy
metadata:
name: "sidecar-policy.example.com"
spec:
paramKind:
kind: Sidecar
apiVersion: mutations.example.com/v1
matchConstraints:
resourceRules:
- apiGroups: ["apps"]
apiVersions: ["v1"]
operations: ["CREATE"]
resources: ["pods"]
matchConditions:
- name: does-not-already-have-sidecar
expression: "!object.spec.initContainers.exists(ic, ic.name == \"mesh-proxy\")"
failurePolicy: Fail
reinvocationPolicy: IfNeeded
mutations:
- patchType: "ApplyConfiguration"
applyConfiguration:
expression: >
Object{
spec: Object.spec{
initContainers: [
Object.spec.initContainers{
name: "mesh-proxy",
image: "mesh/proxy:v1.0.0",
args: ["proxy", "sidecar"],
restartPolicy: "Always"
}
]
}
}
The .spec.mutations
field consists of a list of expressions that evaluate to resource patches.
The emitted patches may be either apply configurations or JSON Patch
patches. You cannot specify an empty list of mutations. After evaluating all the
expressions, the API server applies those changes to the resource that is
passing through admission.
To configure a mutating admission policy for use in a cluster, a binding is
required. The MutatingAdmissionPolicy will only be active if a corresponding
binding exists with the referenced spec.policyName
matching the spec.name
of
a policy.
Once the binding and policy are created, any resource request that matches the
spec.matchConditions
of a policy will trigger the set of mutations defined.
In the example above, creating a Pod will add the mesh-proxy
initContainer mutation:
apiVersion: v1
kind: Pod
metadata:
name: myapp
namespace: default
spec:
...
initContainers:
- name: mesh-proxy
image: mesh/proxy:v1.0.0
args: ["proxy", "sidecar"]
restartPolicy: Always
- name: myapp-initializer
image: example/initializer:v1.0.0
...
Parameter resources
Parameter resources allow a policy configuration to be separate from its
definition. A policy can define paramKind
, which outlines GVK of the parameter
resource, and then a policy binding ties a policy by name (via policyName
) to a
particular parameter resource via paramRef
.
Please refer to parameter resources for more information.
ApplyConfiguration
MutatingAdmissionPolicy expressions are always CEL. Each apply configuration
expression
must evaluate to a CEL object (declared using Object()
initialization).
Apply configurations may not modify atomic structs, maps or arrays due to the risk of accidental deletion of values not included in the apply configuration.
CEL expressions have access to the object types needed to create apply configurations:
Object
- CEL type of the resource object.Object.<fieldName>
- CEL type of object field (such asObject.spec
)Object.<fieldName1>.<fieldName2>...<fieldNameN>
- CEL type of nested field (such asObject.spec.containers
)
CEL expressions have access to the contents of the API request, organized into CEL variables as well as some other useful variables:
object
- The object from the incoming request. The value is null for DELETE requests.oldObject
- The existing object. The value is null for CREATE requests.request
- Attributes of the API request.params
- Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind.namespaceObject
- The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources.variables
- Map of composited variables, from its name to its lazily evaluated value. For example, a variable namedfoo
can be accessed asvariables.foo
.authorizer
- A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request. See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authzauthorizer.requestResource
- A CEL ResourceCheck constructed from theauthorizer
and configured with the request resource.
The apiVersion
, kind
, metadata.name
, metadata.generateName
and metadata.labels
are always accessible from the root of the
object. No other metadata properties are accessible.
JSONPatch
The same mutation can be written as a JSON Patch as follows:
apiVersion: admissionregistration.k8s.io/v1alpha1
kind: MutatingAdmissionPolicy
metadata:
name: "sidecar-policy.example.com"
spec:
paramKind:
kind: Sidecar
apiVersion: mutations.example.com/v1
matchConstraints:
resourceRules:
- apiGroups: [""]
apiVersions: ["v1"]
operations: ["CREATE"]
resources: ["pods"]
matchConditions:
- name: does-not-already-have-sidecar
expression: "!object.spec.initContainers.exists(ic, ic.name == \"mesh-proxy\")"
failurePolicy: Fail
reinvocationPolicy: IfNeeded
mutations:
- patchType: "JSONPatch"
jsonPatch:
expression: >
[
JSONPatch{
op: "add", path: "/spec/initContainers/-",
value: Object.spec.initContainers{
name: "mesh-proxy",
image: "mesh-proxy/v1.0.0",
restartPolicy: "Always"
}
}
]
The expression will be evaluated by CEL to create a JSON patch. ref: https://github.com/google/cel-spec
Each evaluated expression
must return an array of JSONPatch
values. The
JSONPatch
type represents one operation from a JSON patch.
For example, this CEL expression returns a JSON patch to conditionally modify a value:
[
JSONPatch{op: "test", path: "/spec/example", value: "Red"},
JSONPatch{op: "replace", path: "/spec/example", value: "Green"}
]
To define a JSON object for the patch operation value
, use CEL Object
types. For example:
[
JSONPatch{
op: "add",
path: "/spec/selector",
value: Object.spec.selector{matchLabels: {"environment": "test"}}
}
]
To use strings containing '/' and '~' as JSONPatch path keys, use jsonpatch.escapeKey()
. For example:
[
JSONPatch{
op: "add",
path: "/metadata/labels/" + jsonpatch.escapeKey("example.com/environment"),
value: "test"
},
]
CEL expressions have access to the types needed to create JSON patches and objects:
JSONPatch
- CEL type of JSON Patch operations. JSONPatch has the fieldsop
,from
,path
andvalue
. See JSON patch for more details. Thevalue
field may be set to any of: string, integer, array, map or object. If set, thepath
andfrom
fields must be set to a JSON pointer string, where thejsonpatch.escapeKey()
CEL function may be used to escape path keys containing/
and~
.Object
- CEL type of the resource object.Object.<fieldName>
- CEL type of object field (such asObject.spec
)Object.<fieldName1>.<fieldName2>...<fieldNameN>
- CEL type of nested field (such asObject.spec.containers
)
CEL expressions have access to the contents of the API request, organized into CEL variables as well as some other useful variables:
object
- The object from the incoming request. The value is null for DELETE requests.oldObject
- The existing object. The value is null for CREATE requests.request
- Attributes of the API request.params
- Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind.namespaceObject
- The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources.variables
- Map of composited variables, from its name to its lazily evaluated value. For example, a variable namedfoo
can be accessed asvariables.foo
.authorizer
- A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request. See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authzauthorizer.requestResource
- A CEL ResourceCheck constructed from theauthorizer
and configured with the request resource.
CEL expressions have access to Kubernetes CEL function libraries as well as:
jsonpatch.escapeKey
- Performs JSONPatch key escaping.~
and/
are escaped as~0
and~1
respectively.
Only property names of the form [a-zA-Z_.-/][a-zA-Z0-9_.-/]*
are accessible.