diff --git a/.github/workflows/conformance.yaml b/.github/workflows/conformance.yaml
index bbfdc7d5f024..6eb94a96f3ff 100644
--- a/.github/workflows/conformance.yaml
+++ b/.github/workflows/conformance.yaml
@@ -105,6 +105,7 @@ jobs:
- ^generate$/^clusterpolicy$
- ^generate$/^policy$
- ^generate$/^validation$
+ - ^generate$/^foreach$
- ^globalcontext$
- ^lease$
- ^mutate$
diff --git a/api/kyverno/v1/common_types.go b/api/kyverno/v1/common_types.go
index 209245e9a414..53d94bc2382f 100644
--- a/api/kyverno/v1/common_types.go
+++ b/api/kyverno/v1/common_types.go
@@ -749,9 +749,6 @@ type Generation struct {
// +optional
GenerateExisting *bool `json:"generateExisting,omitempty" yaml:"generateExisting,omitempty"`
- // ResourceSpec contains information to select the resource.
- ResourceSpec `json:",omitempty" yaml:",omitempty"`
-
// Synchronize controls if generated resources should be kept in-sync with their source resource.
// If Synchronize is set to "true" changes to generated resources will be overwritten with resource
// data from Data or the resource specified in the Clone declaration.
@@ -766,6 +763,19 @@ type Generation struct {
// +optional
OrphanDownstreamOnPolicyDelete bool `json:"orphanDownstreamOnPolicyDelete,omitempty" yaml:"orphanDownstreamOnPolicyDelete,omitempty"`
+ // +optional
+ GeneratePatterns `json:",omitempty" yaml:",omitempty"`
+
+ // ForEach applies generate rules to a list of sub-elements by creating a context for each entry in the list and looping over it to apply the specified logic.
+ // +optional
+ ForEachGeneration []ForEachGeneration `json:"foreach,omitempty" yaml:"foreach,omitempty"`
+}
+
+type GeneratePatterns struct {
+ // ResourceSpec contains information to select the resource.
+ // +kubebuilder:validation:Optional
+ ResourceSpec `json:",omitempty" yaml:",omitempty"`
+
// Data provides the resource declaration used to populate each generated resource.
// At most one of Data or Clone must be specified. If neither are provided, the generated
// resource will be created with default data only.
@@ -783,6 +793,25 @@ type Generation struct {
CloneList CloneList `json:"cloneList,omitempty" yaml:"cloneList,omitempty"`
}
+type ForEachGeneration struct {
+ // List specifies a JMESPath expression that results in one or more elements
+ // to which the validation logic is applied.
+ List string `json:"list,omitempty" yaml:"list,omitempty"`
+
+ // Context defines variables and data sources that can be used during rule execution.
+ // +optional
+ Context []ContextEntry `json:"context,omitempty" yaml:"context,omitempty"`
+
+ // AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ // set of conditions. The declaration can contain nested `any` or `all` statements.
+ // See: https://kyverno.io/docs/writing-policies/preconditions/
+ // +kubebuilder:validation:XPreserveUnknownFields
+ // +optional
+ AnyAllConditions *AnyAllConditions `json:"preconditions,omitempty" yaml:"preconditions,omitempty"`
+
+ GeneratePatterns `json:",omitempty" yaml:",omitempty"`
+}
+
type CloneList struct {
// Namespace specifies source resource namespace.
Namespace string `json:"namespace,omitempty" yaml:"namespace,omitempty"`
@@ -797,30 +826,55 @@ type CloneList struct {
}
func (g *Generation) Validate(path *field.Path, namespaced bool, policyNamespace string, clusterResources sets.Set[string]) (errs field.ErrorList) {
+ count := 0
+ if g.GetData() != nil {
+ count++
+ }
+ if g.Clone != (CloneFrom{}) {
+ count++
+ }
+ if g.CloneList.Kinds != nil {
+ count++
+ }
+ if g.ForEachGeneration != nil {
+ count++
+ }
+ if count > 1 {
+ errs = append(errs, field.Forbidden(path, "only one of generate patterns(data, clone, cloneList and foreach) can be specified"))
+ return errs
+ }
+
+ if g.ForEachGeneration != nil {
+ for i, foreach := range g.ForEachGeneration {
+ err := foreach.GeneratePatterns.Validate(path.Child("foreach").Index(i), namespaced, policyNamespace, clusterResources)
+ errs = append(errs, err...)
+ }
+ return errs
+ } else {
+ return g.GeneratePatterns.Validate(path, namespaced, policyNamespace, clusterResources)
+ }
+}
+
+func (g *GeneratePatterns) Validate(path *field.Path, namespaced bool, policyNamespace string, clusterResources sets.Set[string]) (errs field.ErrorList) {
if namespaced {
if err := g.validateNamespacedTargetsScope(clusterResources, policyNamespace); err != nil {
- errs = append(errs, field.Forbidden(path.Child("generate").Child("namespace"), fmt.Sprintf("target resource scope mismatched: %v ", err)))
+ errs = append(errs, field.Forbidden(path.Child("namespace"), fmt.Sprintf("target resource scope mismatched: %v ", err)))
}
}
if g.GetKind() != "" {
if !clusterResources.Has(g.GetAPIVersion() + "/" + g.GetKind()) {
if g.GetNamespace() == "" {
- errs = append(errs, field.Forbidden(path.Child("generate").Child("namespace"), "target namespace must be set for a namespaced resource"))
+ errs = append(errs, field.Forbidden(path.Child("namespace"), "target namespace must be set for a namespaced resource"))
}
} else {
if g.GetNamespace() != "" {
- errs = append(errs, field.Forbidden(path.Child("generate").Child("namespace"), "target namespace must not be set for a cluster-wide resource"))
+ errs = append(errs, field.Forbidden(path.Child("namespace"), "target namespace must not be set for a cluster-wide resource"))
}
}
}
- generateType, _, _ := g.GetTypeAndSyncAndOrphanDownstream()
- if generateType == Data {
- return errs
- }
-
- newGeneration := Generation{
+ newGeneration := GeneratePatterns{
ResourceSpec: ResourceSpec{
Kind: g.ResourceSpec.GetKind(),
APIVersion: g.ResourceSpec.GetAPIVersion(),
@@ -830,23 +884,25 @@ func (g *Generation) Validate(path *field.Path, namespaced bool, policyNamespace
}
if err := regex.ObjectHasVariables(newGeneration); err != nil {
- errs = append(errs, field.Forbidden(path.Child("generate").Child("clone/cloneList"), "Generation Rule Clone/CloneList should not have variables"))
+ errs = append(errs, field.Forbidden(path.Child("clone/cloneList"), "Generation Rule Clone/CloneList should not have variables"))
}
if len(g.CloneList.Kinds) == 0 {
if g.Kind == "" {
- errs = append(errs, field.Forbidden(path.Child("generate").Child("kind"), "kind can not be empty"))
+ errs = append(errs, field.Forbidden(path.Child("kind"), "kind can not be empty"))
}
if g.Name == "" {
- errs = append(errs, field.Forbidden(path.Child("generate").Child("name"), "name can not be empty"))
+ errs = append(errs, field.Forbidden(path.Child("name"), "name can not be empty"))
+ }
+ if g.APIVersion == "" {
+ errs = append(errs, field.Forbidden(path.Child("apiVersion"), "apiVersion can not be empty"))
}
}
- errs = append(errs, g.ValidateCloneList(path.Child("generate"), namespaced, policyNamespace, clusterResources)...)
- return errs
+ return append(errs, g.ValidateCloneList(path, namespaced, policyNamespace, clusterResources)...)
}
-func (g *Generation) ValidateCloneList(path *field.Path, namespaced bool, policyNamespace string, clusterResources sets.Set[string]) (errs field.ErrorList) {
+func (g *GeneratePatterns) ValidateCloneList(path *field.Path, namespaced bool, policyNamespace string, clusterResources sets.Set[string]) (errs field.ErrorList) {
if len(g.CloneList.Kinds) == 0 {
return nil
}
@@ -883,15 +939,23 @@ func (g *Generation) ValidateCloneList(path *field.Path, namespaced bool, policy
return errs
}
-func (g *Generation) GetData() apiextensions.JSON {
+func (g *GeneratePatterns) GetType() GenerateType {
+ if g.RawData != nil {
+ return Data
+ }
+
+ return Clone
+}
+
+func (g *GeneratePatterns) GetData() apiextensions.JSON {
return FromJSON(g.RawData)
}
-func (g *Generation) SetData(in apiextensions.JSON) {
+func (g *GeneratePatterns) SetData(in apiextensions.JSON) {
g.RawData = ToJSON(in)
}
-func (g *Generation) validateNamespacedTargetsScope(clusterResources sets.Set[string], policyNamespace string) error {
+func (g *GeneratePatterns) validateNamespacedTargetsScope(clusterResources sets.Set[string], policyNamespace string) error {
target := g.ResourceSpec
if clusterResources.Has(target.GetAPIVersion() + "/" + target.GetKind()) {
return fmt.Errorf("the target must be a namespaced resource: %v/%v", target.GetAPIVersion(), target.GetKind())
@@ -916,13 +980,6 @@ const (
Clone GenerateType = "Clone"
)
-func (g *Generation) GetTypeAndSyncAndOrphanDownstream() (GenerateType, bool, bool) {
- if g.RawData != nil {
- return Data, g.Synchronize, g.OrphanDownstreamOnPolicyDelete
- }
- return Clone, g.Synchronize, g.OrphanDownstreamOnPolicyDelete
-}
-
// CloneFrom provides the location of the source resource used to generate target resources.
// The resource kind is derived from the match criteria.
type CloneFrom struct {
diff --git a/api/kyverno/v1/rule_types.go b/api/kyverno/v1/rule_types.go
index 5a9a457430fa..43b55c28716f 100644
--- a/api/kyverno/v1/rule_types.go
+++ b/api/kyverno/v1/rule_types.go
@@ -179,11 +179,11 @@ func (r *Rule) IsPodSecurity() bool {
return r.Validation.PodSecurity != nil
}
-func (r *Rule) GetTypeAndSyncAndOrphanDownstream() (_ GenerateType, sync bool, orphanDownstream bool) {
+func (r *Rule) GetSyncAndOrphanDownstream() (sync bool, orphanDownstream bool) {
if !r.HasGenerate() {
return
}
- return r.Generation.GetTypeAndSyncAndOrphanDownstream()
+ return r.Generation.Synchronize, r.Generation.OrphanDownstreamOnPolicyDelete
}
func (r *Rule) GetAnyAllConditions() any {
diff --git a/api/kyverno/v1/zz_generated.deepcopy.go b/api/kyverno/v1/zz_generated.deepcopy.go
index c6feffb85c66..bb1154a3ba6d 100755
--- a/api/kyverno/v1/zz_generated.deepcopy.go
+++ b/api/kyverno/v1/zz_generated.deepcopy.go
@@ -537,6 +537,35 @@ func (in *DryRunOption) DeepCopy() *DryRunOption {
return out
}
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
+func (in *ForEachGeneration) DeepCopyInto(out *ForEachGeneration) {
+ *out = *in
+ if in.Context != nil {
+ in, out := &in.Context, &out.Context
+ *out = make([]ContextEntry, len(*in))
+ for i := range *in {
+ (*in)[i].DeepCopyInto(&(*out)[i])
+ }
+ }
+ if in.AnyAllConditions != nil {
+ in, out := &in.AnyAllConditions, &out.AnyAllConditions
+ *out = new(AnyAllConditions)
+ (*in).DeepCopyInto(*out)
+ }
+ in.GeneratePatterns.DeepCopyInto(&out.GeneratePatterns)
+ return
+}
+
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ForEachGeneration.
+func (in *ForEachGeneration) DeepCopy() *ForEachGeneration {
+ if in == nil {
+ return nil
+ }
+ out := new(ForEachGeneration)
+ in.DeepCopyInto(out)
+ return out
+}
+
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ForEachMutation) DeepCopyInto(out *ForEachMutation) {
*out = *in
@@ -631,13 +660,8 @@ func (in *ForEachValidation) DeepCopy() *ForEachValidation {
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
-func (in *Generation) DeepCopyInto(out *Generation) {
+func (in *GeneratePatterns) DeepCopyInto(out *GeneratePatterns) {
*out = *in
- if in.GenerateExisting != nil {
- in, out := &in.GenerateExisting, &out.GenerateExisting
- *out = new(bool)
- **out = **in
- }
out.ResourceSpec = in.ResourceSpec
if in.RawData != nil {
in, out := &in.RawData, &out.RawData
@@ -649,6 +673,35 @@ func (in *Generation) DeepCopyInto(out *Generation) {
return
}
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratePatterns.
+func (in *GeneratePatterns) DeepCopy() *GeneratePatterns {
+ if in == nil {
+ return nil
+ }
+ out := new(GeneratePatterns)
+ in.DeepCopyInto(out)
+ return out
+}
+
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
+func (in *Generation) DeepCopyInto(out *Generation) {
+ *out = *in
+ if in.GenerateExisting != nil {
+ in, out := &in.GenerateExisting, &out.GenerateExisting
+ *out = new(bool)
+ **out = **in
+ }
+ in.GeneratePatterns.DeepCopyInto(&out.GeneratePatterns)
+ if in.ForEachGeneration != nil {
+ in, out := &in.ForEachGeneration, &out.ForEachGeneration
+ *out = make([]ForEachGeneration, len(*in))
+ for i := range *in {
+ (*in)[i].DeepCopyInto(&(*out)[i])
+ }
+ }
+ return
+}
+
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Generation.
func (in *Generation) DeepCopy() *Generation {
if in == nil {
diff --git a/api/kyverno/v2beta1/rule_types.go b/api/kyverno/v2beta1/rule_types.go
index 5793b622b724..b02db67a3e57 100644
--- a/api/kyverno/v2beta1/rule_types.go
+++ b/api/kyverno/v2beta1/rule_types.go
@@ -137,13 +137,6 @@ func (r *Rule) HasGenerate() bool {
return !datautils.DeepEqual(r.Generation, kyvernov1.Generation{})
}
-func (r *Rule) GetGenerateTypeAndSync() (_ kyvernov1.GenerateType, sync bool, orphanDownstream bool) {
- if !r.HasGenerate() {
- return
- }
- return r.Generation.GetTypeAndSyncAndOrphanDownstream()
-}
-
// ValidateRuleType checks only one type of rule is defined per rule
func (r *Rule) ValidateRuleType(path *field.Path) (errs field.ErrorList) {
ruleTypes := []bool{r.HasMutate(), r.HasValidate(), r.HasGenerate(), r.HasVerifyImages()}
diff --git a/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_clusterpolicies.yaml b/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_clusterpolicies.yaml
index b2afa99eb7ee..0bf5d7aa748b 100644
--- a/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_clusterpolicies.yaml
+++ b/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_clusterpolicies.yaml
@@ -1077,135 +1077,46 @@ spec:
At most one of Data or Clone must be specified. If neither are provided, the generated
resource will be created with default data only.
x-kubernetes-preserve-unknown-fields: true
- generateExisting:
- description: |-
- GenerateExisting controls whether to trigger the rule in existing resources
- If is set to "true" the rule will be triggered and applied to existing matched resources.
- type: boolean
- kind:
- description: Kind specifies resource kind.
- type: string
- name:
- description: Name specifies the resource name.
- type: string
- namespace:
- description: Namespace specifies resource namespace.
- type: string
- orphanDownstreamOnPolicyDelete:
- description: |-
- OrphanDownstreamOnPolicyDelete controls whether generated resources should be deleted when the rule that generated
- them is deleted with synchronization enabled. This option is only applicable to generate rules of the data type.
- See https://kyverno.io/docs/writing-policies/generate/#data-examples.
- Defaults to "false" if not specified.
- type: boolean
- synchronize:
- description: |-
- Synchronize controls if generated resources should be kept in-sync with their source resource.
- If Synchronize is set to "true" changes to generated resources will be overwritten with resource
- data from Data or the resource specified in the Clone declaration.
- Optional. Defaults to "false" if not specified.
- type: boolean
- uid:
- description: UID specifies the resource uid.
- type: string
- type: object
- imageExtractors:
- additionalProperties:
- items:
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath expression to apply to the image value.
- This is useful when the extracted image begins with a prefix like 'docker://'.
- The 'trim_prefix' function may be used to trim the prefix: trim_prefix(@, 'docker://').
- Note - Image digest mutation may not be used when applying a JMESPAth to an image.
- type: string
- key:
- description: |-
- Key is an optional name of the field within 'path' that will be used to uniquely identify an image.
- Note - this field MUST be unique.
- type: string
- name:
- description: |-
- Name is the entry the image will be available under 'images.' in the context.
- If this field is not defined, image entries will appear under 'images.custom'.
- type: string
- path:
- description: |-
- Path is the path to the object containing the image field in a custom resource.
- It should be slash-separated. Each slash-separated key must be a valid YAML key or a wildcard '*'.
- Wildcard keys are expanded in case of arrays or objects.
- type: string
- value:
- description: |-
- Value is an optional name of the field within 'path' that points to the image URI.
- This is useful when a custom 'key' is also defined.
- type: string
- required:
- - path
- type: object
- type: array
- description: |-
- ImageExtractors defines a mapping from kinds to ImageExtractorConfigs.
- This config is only valid for verifyImages rules.
- type: object
- match:
- description: |-
- MatchResources defines when this policy rule should be applied. The match
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the user name or role.
- At least one kind is required.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
+ foreach:
+ description: ForEach applies generate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
kinds:
description: Kinds is a list of resource kinds.
items:
type: string
type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ selector:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list of
@@ -1251,1168 +1162,1658 @@ spec:
type: object
type: object
x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ type: object
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
+ caBundle:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- values:
+ url:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
required:
- - key
- - operator
+ - url
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
- items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ urlPath:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ description: Name is the variable name.
type: string
- required:
- - kind
- - name
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide role
- names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ kind:
+ description: Kind specifies resource kind.
type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ name:
+ description: Name specifies the resource name.
type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used to
- match a specific action.
- items:
- description: AdmissionOperation can have one of the
- values CREATE, UPDATE, CONNECT, DELETE, which are
- used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
+ namespace:
+ description: Namespace specifies resource namespace.
type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- mutate:
- description: Mutation is used to modify matching resources.
- properties:
- foreach:
- description: ForEach applies mutation rules to a list of
- sub-elements by creating a context for each entry in the
- list and looping over it to apply the specified logic.
- items:
- description: ForEachMutation applies mutation rules to
- a list of sub-elements by creating a context for each
- entry in the list and looping over it to apply the specified
- logic.
- properties:
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
- items:
- description: RequestData contains the
- HTTP POST data
- properties:
- key:
- description: Key is a unique identifier
- for the data value
- type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
- required:
- - key
- - value
- type: object
- type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
type: string
- method:
- default: GET
- description: Method is the HTTP request
- type (GET or POST). Defaults to GET.
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
enum:
- - GET
- - POST
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- service:
- description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
- properties:
- caBundle:
- description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
- type: string
- url:
- description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
- type: string
- required:
- - url
- type: object
- urlPath:
+ value:
description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap
- namespace.
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is
- a reference to a cached global context entry.
- properties:
- jmesPath:
+ operator:
description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context
- entry
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
- description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential
- providers required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
- type: string
- type: array
- type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON
- object representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: object
- type: array
- foreach:
- description: Foreach declares a nested foreach iterator
- x-kubernetes-preserve-unknown-fields: true
- list:
- description: |-
- List specifies a JMESPath expression that results in one or more elements
- to which the validation logic is applied.
- type: string
- order:
- description: |-
- Order defines the iteration order on the list.
- Can be Ascending to iterate from first to last element or Descending to iterate in from last to first element.
- enum:
- - Ascending
- - Descending
- type: string
- patchStrategicMerge:
- description: |-
- PatchStrategicMerge is a strategic merge patch used to modify resources.
- See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
- and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
- x-kubernetes-preserve-unknown-fields: true
- patchesJson6902:
- description: |-
- PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
- See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
- type: string
- preconditions:
- description: |-
- AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- properties:
- all:
- description: |-
- AllConditions enable variable-based conditional rule execution. This is useful for
- finer control of when an rule is applied. A condition can reference object data
- using JMESPath notation.
- Here, all of the conditions need to pass
- items:
- description: Condition defines variable-based
- conditional criteria for rule execution.
- properties:
- key:
- description: Key is the context entry (using
- JMESPath) for conditional rule evaluation.
- x-kubernetes-preserve-unknown-fields: true
- message:
- description: Message is an optional display
- message
- type: string
- operator:
- description: |-
- Operator is the conditional operation to perform. Valid operators are:
- Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
- GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
- DurationLessThanOrEquals, DurationLessThan
- enum:
- - Equals
- - NotEquals
- - In
- - AnyIn
- - AllIn
- - NotIn
- - AnyNotIn
- - AllNotIn
- - GreaterThanOrEquals
- - GreaterThan
- - LessThanOrEquals
- - LessThan
- - DurationGreaterThanOrEquals
- - DurationGreaterThan
- - DurationLessThanOrEquals
- - DurationLessThan
- type: string
- value:
- description: |-
- Value is the conditional value, or set of values. The values can be fixed set
- or can be variables declared using JMESPath.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: array
- any:
- description: |-
- AnyConditions enable variable-based conditional rule execution. This is useful for
- finer control of when an rule is applied. A condition can reference object data
- using JMESPath notation.
- Here, at least one of the conditions need to pass
- items:
- description: Condition defines variable-based
- conditional criteria for rule execution.
- properties:
- key:
- description: Key is the context entry (using
- JMESPath) for conditional rule evaluation.
- x-kubernetes-preserve-unknown-fields: true
- message:
- description: Message is an optional display
- message
- type: string
- operator:
- description: |-
- Operator is the conditional operation to perform. Valid operators are:
- Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
- GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
- DurationLessThanOrEquals, DurationLessThan
- enum:
- - Equals
- - NotEquals
- - In
- - AnyIn
- - AllIn
- - NotIn
- - AnyNotIn
- - AllNotIn
- - GreaterThanOrEquals
- - GreaterThan
- - LessThanOrEquals
- - LessThan
- - DurationGreaterThanOrEquals
- - DurationGreaterThan
- - DurationLessThanOrEquals
- - DurationLessThan
- type: string
- value:
- description: |-
- Value is the conditional value, or set of values. The values can be fixed set
- or can be variables declared using JMESPath.
- x-kubernetes-preserve-unknown-fields: true
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
type: object
type: array
type: object
x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
type: object
type: array
- mutateExistingOnPolicyUpdate:
- description: MutateExistingOnPolicyUpdate controls if the
- mutateExisting rule will be applied on policy events.
+ generateExisting:
+ description: |-
+ GenerateExisting controls whether to trigger the rule in existing resources
+ If is set to "true" the rule will be triggered and applied to existing matched resources.
type: boolean
- patchStrategicMerge:
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ orphanDownstreamOnPolicyDelete:
description: |-
- PatchStrategicMerge is a strategic merge patch used to modify resources.
- See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
- and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
- x-kubernetes-preserve-unknown-fields: true
- patchesJson6902:
+ OrphanDownstreamOnPolicyDelete controls whether generated resources should be deleted when the rule that generated
+ them is deleted with synchronization enabled. This option is only applicable to generate rules of the data type.
+ See https://kyverno.io/docs/writing-policies/generate/#data-examples.
+ Defaults to "false" if not specified.
+ type: boolean
+ synchronize:
description: |-
- PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
- See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ Synchronize controls if generated resources should be kept in-sync with their source resource.
+ If Synchronize is set to "true" changes to generated resources will be overwritten with resource
+ data from Data or the resource specified in the Clone declaration.
+ Optional. Defaults to "false" if not specified.
+ type: boolean
+ uid:
+ description: UID specifies the resource uid.
type: string
- targets:
- description: Targets defines the target resources to be
- mutated.
- items:
- description: TargetResourceSpec defines targets for mutating
- existing resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
- properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
- items:
- description: RequestData contains the
- HTTP POST data
- properties:
- key:
- description: Key is a unique identifier
- for the data value
- type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
- required:
- - key
- - value
- type: object
- type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- method:
- default: GET
- description: Method is the HTTP request
- type (GET or POST). Defaults to GET.
- enum:
- - GET
- - POST
- type: string
- service:
+ type: object
+ imageExtractors:
+ additionalProperties:
+ items:
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath expression to apply to the image value.
+ This is useful when the extracted image begins with a prefix like 'docker://'.
+ The 'trim_prefix' function may be used to trim the prefix: trim_prefix(@, 'docker://').
+ Note - Image digest mutation may not be used when applying a JMESPAth to an image.
+ type: string
+ key:
+ description: |-
+ Key is an optional name of the field within 'path' that will be used to uniquely identify an image.
+ Note - this field MUST be unique.
+ type: string
+ name:
+ description: |-
+ Name is the entry the image will be available under 'images.' in the context.
+ If this field is not defined, image entries will appear under 'images.custom'.
+ type: string
+ path:
+ description: |-
+ Path is the path to the object containing the image field in a custom resource.
+ It should be slash-separated. Each slash-separated key must be a valid YAML key or a wildcard '*'.
+ Wildcard keys are expanded in case of arrays or objects.
+ type: string
+ value:
+ description: |-
+ Value is an optional name of the field within 'path' that points to the image URI.
+ This is useful when a custom 'key' is also defined.
+ type: string
+ required:
+ - path
+ type: object
+ type: array
+ description: |-
+ ImageExtractors defines a mapping from kinds to ImageExtractorConfigs.
+ This config is only valid for verifyImages rules.
+ type: object
+ match:
+ description: |-
+ MatchResources defines when this policy rule should be applied. The match
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the user name or role.
+ At least one kind is required.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- caBundle:
- description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
+ key:
+ description: key is the label key that
+ the selector applies to.
type: string
- url:
+ operator:
description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
- required:
- - url
- type: object
- urlPath:
- description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
- type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
- properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap
- namespace.
- type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is
- a reference to a cached global context entry.
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context
- entry
- type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
- description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential
- providers required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
+ values:
description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- value:
- description: Value is any arbitrary JSON
- object representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
type: object
+ x-kubernetes-map-type: atomic
type: array
- kind:
- description: Kind specifies resource kind.
- type: string
- name:
- description: Name specifies the resource name.
- type: string
- namespace:
- description: Namespace specifies resource namespace.
- type: string
- preconditions:
- description: |-
- Preconditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
- of conditions (without `any` or `all` statements is supported for backwards compatibility but
- will be deprecated in the next major release.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- x-kubernetes-preserve-unknown-fields: true
- uid:
- description: UID specifies the resource uid.
- type: string
type: object
type: array
- type: object
- name:
- description: Name is a label to identify the rule, It must be
- unique within the policy.
- maxLength: 63
- type: string
- preconditions:
- description: |-
- Preconditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
- of conditions (without `any` or `all` statements is supported for backwards compatibility but
- will be deprecated in the next major release.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- x-kubernetes-preserve-unknown-fields: true
- skipBackgroundRequests:
- default: true
- description: |-
- SkipBackgroundRequests bypasses admission requests that are sent by the background controller.
- The default value is set to "true", it must be set to "false" to apply
- generate and mutateExisting rules to those requests.
- type: boolean
- validate:
- description: Validation is used to validate matching resources.
- properties:
- anyPattern:
- description: |-
- AnyPattern specifies list of validation patterns. At least one of the patterns
- must be satisfied for the validation rule to succeed.
- x-kubernetes-preserve-unknown-fields: true
- assert:
- description: Assert defines a kyverno-json assertion tree.
- type: object
- x-kubernetes-preserve-unknown-fields: true
- cel:
- description: CEL allows validation checks using the Common
- Expression Language (https://kubernetes.io/docs/reference/using-api/cel/).
- properties:
- auditAnnotations:
- description: AuditAnnotations contains CEL expressions
- which are used to produce audit annotations for the
- audit event of the API request.
- items:
- description: AuditAnnotation describes how to produce
- an audit annotation for an API request.
+ any:
+ description: Any allows specifying resources which will
+ be ORed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
properties:
- key:
+ annotations:
+ additionalProperties:
+ type: string
description: |-
- key specifies the audit annotation key. The audit annotation keys of
- a ValidatingAdmissionPolicy must be unique. The key must be a qualified
- name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
-
-
- The key is combined with the resource name of the
- ValidatingAdmissionPolicy to construct an audit annotation key:
- "{ValidatingAdmissionPolicy name}/{key}".
-
-
- If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
- and the same audit annotation key, the annotation key will be identical.
- In this case, the first annotation written with the key will be included
- in the audit event and all subsequent annotations with the same key
- will be discarded.
-
-
- Required.
- type: string
- valueExpression:
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
description: |-
- valueExpression represents the expression which is evaluated by CEL to
- produce an audit annotation value. The expression must evaluate to either
- a string or null value. If the expression evaluates to a string, the
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide role
+ names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used to
+ match a specific action.
+ items:
+ description: AdmissionOperation can have one of the
+ values CREATE, UPDATE, CONNECT, DELETE, which are
+ used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ mutate:
+ description: Mutation is used to modify matching resources.
+ properties:
+ foreach:
+ description: ForEach applies mutation rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
+ items:
+ description: ForEachMutation applies mutation rules to
+ a list of sub-elements by creating a context for each
+ entry in the list and looping over it to apply the specified
+ logic.
+ properties:
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ foreach:
+ description: Foreach declares a nested foreach iterator
+ x-kubernetes-preserve-unknown-fields: true
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
+ type: string
+ order:
+ description: |-
+ Order defines the iteration order on the list.
+ Can be Ascending to iterate from first to last element or Descending to iterate in from last to first element.
+ enum:
+ - Ascending
+ - Descending
+ type: string
+ patchStrategicMerge:
+ description: |-
+ PatchStrategicMerge is a strategic merge patch used to modify resources.
+ See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
+ and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
+ x-kubernetes-preserve-unknown-fields: true
+ patchesJson6902:
+ description: |-
+ PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
+ See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ type: string
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ mutateExistingOnPolicyUpdate:
+ description: MutateExistingOnPolicyUpdate controls if the
+ mutateExisting rule will be applied on policy events.
+ type: boolean
+ patchStrategicMerge:
+ description: |-
+ PatchStrategicMerge is a strategic merge patch used to modify resources.
+ See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
+ and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
+ x-kubernetes-preserve-unknown-fields: true
+ patchesJson6902:
+ description: |-
+ PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
+ See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ type: string
+ targets:
+ description: Targets defines the target resources to be
+ mutated.
+ items:
+ description: TargetResourceSpec defines targets for mutating
+ existing resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
+ description: |-
+ Preconditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
+ of conditions (without `any` or `all` statements is supported for backwards compatibility but
+ will be deprecated in the next major release.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
+ type: object
+ type: array
+ type: object
+ name:
+ description: Name is a label to identify the rule, It must be
+ unique within the policy.
+ maxLength: 63
+ type: string
+ preconditions:
+ description: |-
+ Preconditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
+ of conditions (without `any` or `all` statements is supported for backwards compatibility but
+ will be deprecated in the next major release.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ x-kubernetes-preserve-unknown-fields: true
+ skipBackgroundRequests:
+ default: true
+ description: |-
+ SkipBackgroundRequests bypasses admission requests that are sent by the background controller.
+ The default value is set to "true", it must be set to "false" to apply
+ generate and mutateExisting rules to those requests.
+ type: boolean
+ validate:
+ description: Validation is used to validate matching resources.
+ properties:
+ anyPattern:
+ description: |-
+ AnyPattern specifies list of validation patterns. At least one of the patterns
+ must be satisfied for the validation rule to succeed.
+ x-kubernetes-preserve-unknown-fields: true
+ assert:
+ description: Assert defines a kyverno-json assertion tree.
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ cel:
+ description: CEL allows validation checks using the Common
+ Expression Language (https://kubernetes.io/docs/reference/using-api/cel/).
+ properties:
+ auditAnnotations:
+ description: AuditAnnotations contains CEL expressions
+ which are used to produce audit annotations for the
+ audit event of the API request.
+ items:
+ description: AuditAnnotation describes how to produce
+ an audit annotation for an API request.
+ properties:
+ key:
+ description: |-
+ key specifies the audit annotation key. The audit annotation keys of
+ a ValidatingAdmissionPolicy must be unique. The key must be a qualified
+ name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
+
+
+ The key is combined with the resource name of the
+ ValidatingAdmissionPolicy to construct an audit annotation key:
+ "{ValidatingAdmissionPolicy name}/{key}".
+
+
+ If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
+ and the same audit annotation key, the annotation key will be identical.
+ In this case, the first annotation written with the key will be included
+ in the audit event and all subsequent annotations with the same key
+ will be discarded.
+
+
+ Required.
+ type: string
+ valueExpression:
+ description: |-
+ valueExpression represents the expression which is evaluated by CEL to
+ produce an audit annotation value. The expression must evaluate to either
+ a string or null value. If the expression evaluates to a string, the
audit annotation is included with the string value. If the expression
evaluates to null or empty string the audit annotation will be omitted.
The valueExpression may be no longer than 5kb in length.
@@ -4537,460 +4938,956 @@ spec:
Required.
type: string
- required:
- - expression
- - name
+ required:
+ - expression
+ - name
+ type: object
+ type: array
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the HTTP POST
+ data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request type (GET
+ or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is a reference
+ to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential providers
+ required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object
+ representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
type: array
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
items:
- description: RequestData contains the HTTP POST
- data
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
+ items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
properties:
- key:
- description: Key is a unique identifier
- for the data value
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
required:
- - key
- - value
+ - kind
+ - name
type: object
+ x-kubernetes-map-type: atomic
type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- method:
- default: GET
- description: Method is the HTTP request type (GET
- or POST). Defaults to GET.
- enum:
- - GET
- - POST
- type: string
- service:
- description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
+ type: object
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
properties:
- caBundle:
+ annotations:
+ additionalProperties:
+ type: string
description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
- type: string
- url:
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
type: string
- required:
- - url
- type: object
- urlPath:
- description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
- type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
- properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap namespace.
- type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is a reference
- to a cached global context entry.
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context entry
- type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
+ names:
description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential providers
- required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
type: string
type: array
- secrets:
+ namespaceSelector:
description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
type: string
type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object
- representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
- items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
items:
type: string
type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
type: string
- type: array
- name:
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one of
+ the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list
+ of sub-elements by creating a context for each entry
+ in the list and looping over it to apply the specified
+ logic.
items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
kinds:
description: Kinds is a list of resource kinds.
items:
type: string
type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ selector:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list
@@ -5036,416 +5933,329 @@ spec:
type: object
type: object
x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
- items:
+ type: object
+ context:
+ description: Context defines variables and data
+ sources that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains
+ the HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data
+ value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap
+ reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference
+ is a reference to a cached global context
+ entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials
+ provides credentials that will be
+ used for authentication with registry
properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry
+ allows insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ description: Name is the variable name.
type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one of
- the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ variable:
+ description: Variable defines an arbitrary
+ JMESPath context variable that can be
+ defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
+ value:
+ description: Value is any arbitrary
+ JSON object representable in YAML
+ or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source
- resource used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ description: Namespace specifies resource namespace.
type: string
- type: array
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
+ type: object
+ type: array
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -9157,62 +9967,272 @@ spec:
- google
- github
type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath context
+ variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object representable
+ in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
type: string
- type: array
- type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath context
- variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object representable
- in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
items:
description: ResourceFilter allow users to "AND" or "OR"
between resources
@@ -9317,22 +10337,236 @@ spec:
"UPDATE", "CONNECT", "DELETE"], which are used
to match a specific action.
items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source resource
+ used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
+ items:
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
type: string
type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
selector:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list of
@@ -9379,344 +10613,321 @@ spec:
type: object
x-kubernetes-map-type: atomic
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
items:
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
+ apiCall:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
- items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: key is the label key that
- the selector applies to.
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- operator:
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: array
- selector:
+ any:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
type: object
type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source resource
- used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -13897,138 +15108,547 @@ spec:
map is equivalent to an element of matchExpressions, whose key field is "key", the
operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list
+ of sub-elements by creating a context for each entry
+ in the list and looping over it to apply the specified
+ logic.
+ items:
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ context:
+ description: Context defines variables and data
+ sources that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains
+ the HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data
+ value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap
+ reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference
+ is a reference to a cached global context
+ entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials
+ provides credentials that will be
+ used for authentication with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry
+ allows insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary
+ JMESPath context variable that can be
+ defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary
+ JSON object representable in YAML
+ or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
type: string
- required:
- - kind
- - name
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source
- resource used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
diff --git a/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_policies.yaml b/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_policies.yaml
index 612cd99213e9..2baa674cedbc 100644
--- a/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_policies.yaml
+++ b/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_policies.yaml
@@ -1078,135 +1078,46 @@ spec:
At most one of Data or Clone must be specified. If neither are provided, the generated
resource will be created with default data only.
x-kubernetes-preserve-unknown-fields: true
- generateExisting:
- description: |-
- GenerateExisting controls whether to trigger the rule in existing resources
- If is set to "true" the rule will be triggered and applied to existing matched resources.
- type: boolean
- kind:
- description: Kind specifies resource kind.
- type: string
- name:
- description: Name specifies the resource name.
- type: string
- namespace:
- description: Namespace specifies resource namespace.
- type: string
- orphanDownstreamOnPolicyDelete:
- description: |-
- OrphanDownstreamOnPolicyDelete controls whether generated resources should be deleted when the rule that generated
- them is deleted with synchronization enabled. This option is only applicable to generate rules of the data type.
- See https://kyverno.io/docs/writing-policies/generate/#data-examples.
- Defaults to "false" if not specified.
- type: boolean
- synchronize:
- description: |-
- Synchronize controls if generated resources should be kept in-sync with their source resource.
- If Synchronize is set to "true" changes to generated resources will be overwritten with resource
- data from Data or the resource specified in the Clone declaration.
- Optional. Defaults to "false" if not specified.
- type: boolean
- uid:
- description: UID specifies the resource uid.
- type: string
- type: object
- imageExtractors:
- additionalProperties:
- items:
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath expression to apply to the image value.
- This is useful when the extracted image begins with a prefix like 'docker://'.
- The 'trim_prefix' function may be used to trim the prefix: trim_prefix(@, 'docker://').
- Note - Image digest mutation may not be used when applying a JMESPAth to an image.
- type: string
- key:
- description: |-
- Key is an optional name of the field within 'path' that will be used to uniquely identify an image.
- Note - this field MUST be unique.
- type: string
- name:
- description: |-
- Name is the entry the image will be available under 'images.' in the context.
- If this field is not defined, image entries will appear under 'images.custom'.
- type: string
- path:
- description: |-
- Path is the path to the object containing the image field in a custom resource.
- It should be slash-separated. Each slash-separated key must be a valid YAML key or a wildcard '*'.
- Wildcard keys are expanded in case of arrays or objects.
- type: string
- value:
- description: |-
- Value is an optional name of the field within 'path' that points to the image URI.
- This is useful when a custom 'key' is also defined.
- type: string
- required:
- - path
- type: object
- type: array
- description: |-
- ImageExtractors defines a mapping from kinds to ImageExtractorConfigs.
- This config is only valid for verifyImages rules.
- type: object
- match:
- description: |-
- MatchResources defines when this policy rule should be applied. The match
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the user name or role.
- At least one kind is required.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
+ foreach:
+ description: ForEach applies generate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
kinds:
description: Kinds is a list of resource kinds.
items:
type: string
type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ selector:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list of
@@ -1252,1168 +1163,1658 @@ spec:
type: object
type: object
x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ type: object
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
+ caBundle:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- values:
+ url:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
required:
- - key
- - operator
+ - url
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
- items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ urlPath:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ description: Name is the variable name.
type: string
- required:
- - kind
- - name
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide role
- names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ kind:
+ description: Kind specifies resource kind.
type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ name:
+ description: Name specifies the resource name.
type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used to
- match a specific action.
- items:
- description: AdmissionOperation can have one of the
- values CREATE, UPDATE, CONNECT, DELETE, which are
- used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
+ namespace:
+ description: Namespace specifies resource namespace.
type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- mutate:
- description: Mutation is used to modify matching resources.
- properties:
- foreach:
- description: ForEach applies mutation rules to a list of
- sub-elements by creating a context for each entry in the
- list and looping over it to apply the specified logic.
- items:
- description: ForEachMutation applies mutation rules to
- a list of sub-elements by creating a context for each
- entry in the list and looping over it to apply the specified
- logic.
- properties:
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
- items:
- description: RequestData contains the
- HTTP POST data
- properties:
- key:
- description: Key is a unique identifier
- for the data value
- type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
- required:
- - key
- - value
- type: object
- type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
type: string
- method:
- default: GET
- description: Method is the HTTP request
- type (GET or POST). Defaults to GET.
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
enum:
- - GET
- - POST
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- service:
- description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
- properties:
- caBundle:
- description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
- type: string
- url:
- description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
- type: string
- required:
- - url
- type: object
- urlPath:
+ value:
description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap
- namespace.
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is
- a reference to a cached global context entry.
- properties:
- jmesPath:
+ operator:
description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context
- entry
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
- description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential
- providers required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
- type: string
- type: array
- type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON
- object representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: object
- type: array
- foreach:
- description: Foreach declares a nested foreach iterator
- x-kubernetes-preserve-unknown-fields: true
- list:
- description: |-
- List specifies a JMESPath expression that results in one or more elements
- to which the validation logic is applied.
- type: string
- order:
- description: |-
- Order defines the iteration order on the list.
- Can be Ascending to iterate from first to last element or Descending to iterate in from last to first element.
- enum:
- - Ascending
- - Descending
- type: string
- patchStrategicMerge:
- description: |-
- PatchStrategicMerge is a strategic merge patch used to modify resources.
- See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
- and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
- x-kubernetes-preserve-unknown-fields: true
- patchesJson6902:
- description: |-
- PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
- See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
- type: string
- preconditions:
- description: |-
- AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- properties:
- all:
- description: |-
- AllConditions enable variable-based conditional rule execution. This is useful for
- finer control of when an rule is applied. A condition can reference object data
- using JMESPath notation.
- Here, all of the conditions need to pass
- items:
- description: Condition defines variable-based
- conditional criteria for rule execution.
- properties:
- key:
- description: Key is the context entry (using
- JMESPath) for conditional rule evaluation.
- x-kubernetes-preserve-unknown-fields: true
- message:
- description: Message is an optional display
- message
- type: string
- operator:
- description: |-
- Operator is the conditional operation to perform. Valid operators are:
- Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
- GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
- DurationLessThanOrEquals, DurationLessThan
- enum:
- - Equals
- - NotEquals
- - In
- - AnyIn
- - AllIn
- - NotIn
- - AnyNotIn
- - AllNotIn
- - GreaterThanOrEquals
- - GreaterThan
- - LessThanOrEquals
- - LessThan
- - DurationGreaterThanOrEquals
- - DurationGreaterThan
- - DurationLessThanOrEquals
- - DurationLessThan
- type: string
- value:
- description: |-
- Value is the conditional value, or set of values. The values can be fixed set
- or can be variables declared using JMESPath.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: array
- any:
- description: |-
- AnyConditions enable variable-based conditional rule execution. This is useful for
- finer control of when an rule is applied. A condition can reference object data
- using JMESPath notation.
- Here, at least one of the conditions need to pass
- items:
- description: Condition defines variable-based
- conditional criteria for rule execution.
- properties:
- key:
- description: Key is the context entry (using
- JMESPath) for conditional rule evaluation.
- x-kubernetes-preserve-unknown-fields: true
- message:
- description: Message is an optional display
- message
- type: string
- operator:
- description: |-
- Operator is the conditional operation to perform. Valid operators are:
- Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
- GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
- DurationLessThanOrEquals, DurationLessThan
- enum:
- - Equals
- - NotEquals
- - In
- - AnyIn
- - AllIn
- - NotIn
- - AnyNotIn
- - AllNotIn
- - GreaterThanOrEquals
- - GreaterThan
- - LessThanOrEquals
- - LessThan
- - DurationGreaterThanOrEquals
- - DurationGreaterThan
- - DurationLessThanOrEquals
- - DurationLessThan
- type: string
- value:
- description: |-
- Value is the conditional value, or set of values. The values can be fixed set
- or can be variables declared using JMESPath.
- x-kubernetes-preserve-unknown-fields: true
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
type: object
type: array
type: object
x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
type: object
type: array
- mutateExistingOnPolicyUpdate:
- description: MutateExistingOnPolicyUpdate controls if the
- mutateExisting rule will be applied on policy events.
+ generateExisting:
+ description: |-
+ GenerateExisting controls whether to trigger the rule in existing resources
+ If is set to "true" the rule will be triggered and applied to existing matched resources.
type: boolean
- patchStrategicMerge:
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ orphanDownstreamOnPolicyDelete:
description: |-
- PatchStrategicMerge is a strategic merge patch used to modify resources.
- See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
- and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
- x-kubernetes-preserve-unknown-fields: true
- patchesJson6902:
+ OrphanDownstreamOnPolicyDelete controls whether generated resources should be deleted when the rule that generated
+ them is deleted with synchronization enabled. This option is only applicable to generate rules of the data type.
+ See https://kyverno.io/docs/writing-policies/generate/#data-examples.
+ Defaults to "false" if not specified.
+ type: boolean
+ synchronize:
description: |-
- PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
- See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ Synchronize controls if generated resources should be kept in-sync with their source resource.
+ If Synchronize is set to "true" changes to generated resources will be overwritten with resource
+ data from Data or the resource specified in the Clone declaration.
+ Optional. Defaults to "false" if not specified.
+ type: boolean
+ uid:
+ description: UID specifies the resource uid.
type: string
- targets:
- description: Targets defines the target resources to be
- mutated.
- items:
- description: TargetResourceSpec defines targets for mutating
- existing resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
- properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
- items:
- description: RequestData contains the
- HTTP POST data
- properties:
- key:
- description: Key is a unique identifier
- for the data value
- type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
- required:
- - key
- - value
- type: object
- type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- method:
- default: GET
- description: Method is the HTTP request
- type (GET or POST). Defaults to GET.
- enum:
- - GET
- - POST
- type: string
- service:
+ type: object
+ imageExtractors:
+ additionalProperties:
+ items:
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath expression to apply to the image value.
+ This is useful when the extracted image begins with a prefix like 'docker://'.
+ The 'trim_prefix' function may be used to trim the prefix: trim_prefix(@, 'docker://').
+ Note - Image digest mutation may not be used when applying a JMESPAth to an image.
+ type: string
+ key:
+ description: |-
+ Key is an optional name of the field within 'path' that will be used to uniquely identify an image.
+ Note - this field MUST be unique.
+ type: string
+ name:
+ description: |-
+ Name is the entry the image will be available under 'images.' in the context.
+ If this field is not defined, image entries will appear under 'images.custom'.
+ type: string
+ path:
+ description: |-
+ Path is the path to the object containing the image field in a custom resource.
+ It should be slash-separated. Each slash-separated key must be a valid YAML key or a wildcard '*'.
+ Wildcard keys are expanded in case of arrays or objects.
+ type: string
+ value:
+ description: |-
+ Value is an optional name of the field within 'path' that points to the image URI.
+ This is useful when a custom 'key' is also defined.
+ type: string
+ required:
+ - path
+ type: object
+ type: array
+ description: |-
+ ImageExtractors defines a mapping from kinds to ImageExtractorConfigs.
+ This config is only valid for verifyImages rules.
+ type: object
+ match:
+ description: |-
+ MatchResources defines when this policy rule should be applied. The match
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the user name or role.
+ At least one kind is required.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- caBundle:
- description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
+ key:
+ description: key is the label key that
+ the selector applies to.
type: string
- url:
+ operator:
description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
- required:
- - url
- type: object
- urlPath:
- description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
- type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
- properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap
- namespace.
- type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is
- a reference to a cached global context entry.
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context
- entry
- type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
- description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential
- providers required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
+ values:
description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- value:
- description: Value is any arbitrary JSON
- object representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
type: object
+ x-kubernetes-map-type: atomic
type: array
- kind:
- description: Kind specifies resource kind.
- type: string
- name:
- description: Name specifies the resource name.
- type: string
- namespace:
- description: Namespace specifies resource namespace.
- type: string
- preconditions:
- description: |-
- Preconditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
- of conditions (without `any` or `all` statements is supported for backwards compatibility but
- will be deprecated in the next major release.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- x-kubernetes-preserve-unknown-fields: true
- uid:
- description: UID specifies the resource uid.
- type: string
type: object
type: array
- type: object
- name:
- description: Name is a label to identify the rule, It must be
- unique within the policy.
- maxLength: 63
- type: string
- preconditions:
- description: |-
- Preconditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
- of conditions (without `any` or `all` statements is supported for backwards compatibility but
- will be deprecated in the next major release.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- x-kubernetes-preserve-unknown-fields: true
- skipBackgroundRequests:
- default: true
- description: |-
- SkipBackgroundRequests bypasses admission requests that are sent by the background controller.
- The default value is set to "true", it must be set to "false" to apply
- generate and mutateExisting rules to those requests.
- type: boolean
- validate:
- description: Validation is used to validate matching resources.
- properties:
- anyPattern:
- description: |-
- AnyPattern specifies list of validation patterns. At least one of the patterns
- must be satisfied for the validation rule to succeed.
- x-kubernetes-preserve-unknown-fields: true
- assert:
- description: Assert defines a kyverno-json assertion tree.
- type: object
- x-kubernetes-preserve-unknown-fields: true
- cel:
- description: CEL allows validation checks using the Common
- Expression Language (https://kubernetes.io/docs/reference/using-api/cel/).
- properties:
- auditAnnotations:
- description: AuditAnnotations contains CEL expressions
- which are used to produce audit annotations for the
- audit event of the API request.
- items:
- description: AuditAnnotation describes how to produce
- an audit annotation for an API request.
+ any:
+ description: Any allows specifying resources which will
+ be ORed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
properties:
- key:
+ annotations:
+ additionalProperties:
+ type: string
description: |-
- key specifies the audit annotation key. The audit annotation keys of
- a ValidatingAdmissionPolicy must be unique. The key must be a qualified
- name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
-
-
- The key is combined with the resource name of the
- ValidatingAdmissionPolicy to construct an audit annotation key:
- "{ValidatingAdmissionPolicy name}/{key}".
-
-
- If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
- and the same audit annotation key, the annotation key will be identical.
- In this case, the first annotation written with the key will be included
- in the audit event and all subsequent annotations with the same key
- will be discarded.
-
-
- Required.
- type: string
- valueExpression:
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
description: |-
- valueExpression represents the expression which is evaluated by CEL to
- produce an audit annotation value. The expression must evaluate to either
- a string or null value. If the expression evaluates to a string, the
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide role
+ names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used to
+ match a specific action.
+ items:
+ description: AdmissionOperation can have one of the
+ values CREATE, UPDATE, CONNECT, DELETE, which are
+ used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ mutate:
+ description: Mutation is used to modify matching resources.
+ properties:
+ foreach:
+ description: ForEach applies mutation rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
+ items:
+ description: ForEachMutation applies mutation rules to
+ a list of sub-elements by creating a context for each
+ entry in the list and looping over it to apply the specified
+ logic.
+ properties:
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ foreach:
+ description: Foreach declares a nested foreach iterator
+ x-kubernetes-preserve-unknown-fields: true
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
+ type: string
+ order:
+ description: |-
+ Order defines the iteration order on the list.
+ Can be Ascending to iterate from first to last element or Descending to iterate in from last to first element.
+ enum:
+ - Ascending
+ - Descending
+ type: string
+ patchStrategicMerge:
+ description: |-
+ PatchStrategicMerge is a strategic merge patch used to modify resources.
+ See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
+ and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
+ x-kubernetes-preserve-unknown-fields: true
+ patchesJson6902:
+ description: |-
+ PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
+ See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ type: string
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ mutateExistingOnPolicyUpdate:
+ description: MutateExistingOnPolicyUpdate controls if the
+ mutateExisting rule will be applied on policy events.
+ type: boolean
+ patchStrategicMerge:
+ description: |-
+ PatchStrategicMerge is a strategic merge patch used to modify resources.
+ See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
+ and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
+ x-kubernetes-preserve-unknown-fields: true
+ patchesJson6902:
+ description: |-
+ PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
+ See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ type: string
+ targets:
+ description: Targets defines the target resources to be
+ mutated.
+ items:
+ description: TargetResourceSpec defines targets for mutating
+ existing resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
+ description: |-
+ Preconditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
+ of conditions (without `any` or `all` statements is supported for backwards compatibility but
+ will be deprecated in the next major release.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
+ type: object
+ type: array
+ type: object
+ name:
+ description: Name is a label to identify the rule, It must be
+ unique within the policy.
+ maxLength: 63
+ type: string
+ preconditions:
+ description: |-
+ Preconditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
+ of conditions (without `any` or `all` statements is supported for backwards compatibility but
+ will be deprecated in the next major release.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ x-kubernetes-preserve-unknown-fields: true
+ skipBackgroundRequests:
+ default: true
+ description: |-
+ SkipBackgroundRequests bypasses admission requests that are sent by the background controller.
+ The default value is set to "true", it must be set to "false" to apply
+ generate and mutateExisting rules to those requests.
+ type: boolean
+ validate:
+ description: Validation is used to validate matching resources.
+ properties:
+ anyPattern:
+ description: |-
+ AnyPattern specifies list of validation patterns. At least one of the patterns
+ must be satisfied for the validation rule to succeed.
+ x-kubernetes-preserve-unknown-fields: true
+ assert:
+ description: Assert defines a kyverno-json assertion tree.
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ cel:
+ description: CEL allows validation checks using the Common
+ Expression Language (https://kubernetes.io/docs/reference/using-api/cel/).
+ properties:
+ auditAnnotations:
+ description: AuditAnnotations contains CEL expressions
+ which are used to produce audit annotations for the
+ audit event of the API request.
+ items:
+ description: AuditAnnotation describes how to produce
+ an audit annotation for an API request.
+ properties:
+ key:
+ description: |-
+ key specifies the audit annotation key. The audit annotation keys of
+ a ValidatingAdmissionPolicy must be unique. The key must be a qualified
+ name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
+
+
+ The key is combined with the resource name of the
+ ValidatingAdmissionPolicy to construct an audit annotation key:
+ "{ValidatingAdmissionPolicy name}/{key}".
+
+
+ If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
+ and the same audit annotation key, the annotation key will be identical.
+ In this case, the first annotation written with the key will be included
+ in the audit event and all subsequent annotations with the same key
+ will be discarded.
+
+
+ Required.
+ type: string
+ valueExpression:
+ description: |-
+ valueExpression represents the expression which is evaluated by CEL to
+ produce an audit annotation value. The expression must evaluate to either
+ a string or null value. If the expression evaluates to a string, the
audit annotation is included with the string value. If the expression
evaluates to null or empty string the audit annotation will be omitted.
The valueExpression may be no longer than 5kb in length.
@@ -4539,460 +4940,956 @@ spec:
Required.
type: string
- required:
- - expression
- - name
+ required:
+ - expression
+ - name
+ type: object
+ type: array
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the HTTP POST
+ data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request type (GET
+ or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is a reference
+ to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential providers
+ required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object
+ representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
type: array
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
items:
- description: RequestData contains the HTTP POST
- data
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
+ items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
properties:
- key:
- description: Key is a unique identifier
- for the data value
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
required:
- - key
- - value
+ - kind
+ - name
type: object
+ x-kubernetes-map-type: atomic
type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- method:
- default: GET
- description: Method is the HTTP request type (GET
- or POST). Defaults to GET.
- enum:
- - GET
- - POST
- type: string
- service:
- description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
+ type: object
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
properties:
- caBundle:
+ annotations:
+ additionalProperties:
+ type: string
description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
- type: string
- url:
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
type: string
- required:
- - url
- type: object
- urlPath:
- description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
- type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
- properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap namespace.
- type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is a reference
- to a cached global context entry.
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context entry
- type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
+ names:
description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential providers
- required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
type: string
type: array
- secrets:
+ namespaceSelector:
description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
type: string
type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object
- representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
- items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
items:
type: string
type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
type: string
- type: array
- name:
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one of
+ the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list
+ of sub-elements by creating a context for each entry
+ in the list and looping over it to apply the specified
+ logic.
items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
kinds:
description: Kinds is a list of resource kinds.
items:
type: string
type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ selector:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list
@@ -5038,416 +5935,329 @@ spec:
type: object
type: object
x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
- items:
+ type: object
+ context:
+ description: Context defines variables and data
+ sources that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains
+ the HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data
+ value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap
+ reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference
+ is a reference to a cached global context
+ entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials
+ provides credentials that will be
+ used for authentication with registry
properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry
+ allows insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ description: Name is the variable name.
type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one of
- the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ variable:
+ description: Variable defines an arbitrary
+ JMESPath context variable that can be
+ defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
+ value:
+ description: Value is any arbitrary
+ JSON object representable in YAML
+ or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source
- resource used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ description: Namespace specifies resource namespace.
type: string
- type: array
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
+ type: object
+ type: array
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -9160,62 +9970,272 @@ spec:
- google
- github
type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath context
+ variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object representable
+ in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
type: string
- type: array
- type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath context
- variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object representable
- in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
items:
description: ResourceFilter allow users to "AND" or "OR"
between resources
@@ -9320,22 +10340,236 @@ spec:
"UPDATE", "CONNECT", "DELETE"], which are used
to match a specific action.
items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source resource
+ used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
+ items:
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
type: string
type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
selector:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list of
@@ -9382,344 +10616,321 @@ spec:
type: object
x-kubernetes-map-type: atomic
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
items:
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
+ apiCall:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
- items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: key is the label key that
- the selector applies to.
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- operator:
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: array
- selector:
+ any:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
type: object
type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source resource
- used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -13900,138 +15111,547 @@ spec:
map is equivalent to an element of matchExpressions, whose key field is "key", the
operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list
+ of sub-elements by creating a context for each entry
+ in the list and looping over it to apply the specified
+ logic.
+ items:
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ context:
+ description: Context defines variables and data
+ sources that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains
+ the HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data
+ value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap
+ reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference
+ is a reference to a cached global context
+ entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials
+ provides credentials that will be
+ used for authentication with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry
+ allows insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary
+ JMESPath context variable that can be
+ defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary
+ JSON object representable in YAML
+ or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
type: string
- required:
- - kind
- - name
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source
- resource used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
diff --git a/cmd/cli/kubectl-kyverno/data/crds/kyverno.io_clusterpolicies.yaml b/cmd/cli/kubectl-kyverno/data/crds/kyverno.io_clusterpolicies.yaml
index 792f9c04bee8..5be955d0f39c 100644
--- a/cmd/cli/kubectl-kyverno/data/crds/kyverno.io_clusterpolicies.yaml
+++ b/cmd/cli/kubectl-kyverno/data/crds/kyverno.io_clusterpolicies.yaml
@@ -1071,135 +1071,46 @@ spec:
At most one of Data or Clone must be specified. If neither are provided, the generated
resource will be created with default data only.
x-kubernetes-preserve-unknown-fields: true
- generateExisting:
- description: |-
- GenerateExisting controls whether to trigger the rule in existing resources
- If is set to "true" the rule will be triggered and applied to existing matched resources.
- type: boolean
- kind:
- description: Kind specifies resource kind.
- type: string
- name:
- description: Name specifies the resource name.
- type: string
- namespace:
- description: Namespace specifies resource namespace.
- type: string
- orphanDownstreamOnPolicyDelete:
- description: |-
- OrphanDownstreamOnPolicyDelete controls whether generated resources should be deleted when the rule that generated
- them is deleted with synchronization enabled. This option is only applicable to generate rules of the data type.
- See https://kyverno.io/docs/writing-policies/generate/#data-examples.
- Defaults to "false" if not specified.
- type: boolean
- synchronize:
- description: |-
- Synchronize controls if generated resources should be kept in-sync with their source resource.
- If Synchronize is set to "true" changes to generated resources will be overwritten with resource
- data from Data or the resource specified in the Clone declaration.
- Optional. Defaults to "false" if not specified.
- type: boolean
- uid:
- description: UID specifies the resource uid.
- type: string
- type: object
- imageExtractors:
- additionalProperties:
- items:
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath expression to apply to the image value.
- This is useful when the extracted image begins with a prefix like 'docker://'.
- The 'trim_prefix' function may be used to trim the prefix: trim_prefix(@, 'docker://').
- Note - Image digest mutation may not be used when applying a JMESPAth to an image.
- type: string
- key:
- description: |-
- Key is an optional name of the field within 'path' that will be used to uniquely identify an image.
- Note - this field MUST be unique.
- type: string
- name:
- description: |-
- Name is the entry the image will be available under 'images.' in the context.
- If this field is not defined, image entries will appear under 'images.custom'.
- type: string
- path:
- description: |-
- Path is the path to the object containing the image field in a custom resource.
- It should be slash-separated. Each slash-separated key must be a valid YAML key or a wildcard '*'.
- Wildcard keys are expanded in case of arrays or objects.
- type: string
- value:
- description: |-
- Value is an optional name of the field within 'path' that points to the image URI.
- This is useful when a custom 'key' is also defined.
- type: string
- required:
- - path
- type: object
- type: array
- description: |-
- ImageExtractors defines a mapping from kinds to ImageExtractorConfigs.
- This config is only valid for verifyImages rules.
- type: object
- match:
- description: |-
- MatchResources defines when this policy rule should be applied. The match
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the user name or role.
- At least one kind is required.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
+ foreach:
+ description: ForEach applies generate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
kinds:
description: Kinds is a list of resource kinds.
items:
type: string
type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ selector:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list of
@@ -1245,1168 +1156,1658 @@ spec:
type: object
type: object
x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ type: object
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
+ caBundle:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- values:
+ url:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
required:
- - key
- - operator
+ - url
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
- items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ urlPath:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ description: Name is the variable name.
type: string
- required:
- - kind
- - name
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide role
- names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ kind:
+ description: Kind specifies resource kind.
type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ name:
+ description: Name specifies the resource name.
type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used to
- match a specific action.
- items:
- description: AdmissionOperation can have one of the
- values CREATE, UPDATE, CONNECT, DELETE, which are
- used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
+ namespace:
+ description: Namespace specifies resource namespace.
type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- mutate:
- description: Mutation is used to modify matching resources.
- properties:
- foreach:
- description: ForEach applies mutation rules to a list of
- sub-elements by creating a context for each entry in the
- list and looping over it to apply the specified logic.
- items:
- description: ForEachMutation applies mutation rules to
- a list of sub-elements by creating a context for each
- entry in the list and looping over it to apply the specified
- logic.
- properties:
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
- items:
- description: RequestData contains the
- HTTP POST data
- properties:
- key:
- description: Key is a unique identifier
- for the data value
- type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
- required:
- - key
- - value
- type: object
- type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
type: string
- method:
- default: GET
- description: Method is the HTTP request
- type (GET or POST). Defaults to GET.
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
enum:
- - GET
- - POST
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- service:
- description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
- properties:
- caBundle:
- description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
- type: string
- url:
- description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
- type: string
- required:
- - url
- type: object
- urlPath:
+ value:
description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap
- namespace.
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is
- a reference to a cached global context entry.
- properties:
- jmesPath:
+ operator:
description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context
- entry
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
- description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential
- providers required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
- type: string
- type: array
- type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON
- object representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: object
- type: array
- foreach:
- description: Foreach declares a nested foreach iterator
- x-kubernetes-preserve-unknown-fields: true
- list:
- description: |-
- List specifies a JMESPath expression that results in one or more elements
- to which the validation logic is applied.
- type: string
- order:
- description: |-
- Order defines the iteration order on the list.
- Can be Ascending to iterate from first to last element or Descending to iterate in from last to first element.
- enum:
- - Ascending
- - Descending
- type: string
- patchStrategicMerge:
- description: |-
- PatchStrategicMerge is a strategic merge patch used to modify resources.
- See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
- and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
- x-kubernetes-preserve-unknown-fields: true
- patchesJson6902:
- description: |-
- PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
- See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
- type: string
- preconditions:
- description: |-
- AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- properties:
- all:
- description: |-
- AllConditions enable variable-based conditional rule execution. This is useful for
- finer control of when an rule is applied. A condition can reference object data
- using JMESPath notation.
- Here, all of the conditions need to pass
- items:
- description: Condition defines variable-based
- conditional criteria for rule execution.
- properties:
- key:
- description: Key is the context entry (using
- JMESPath) for conditional rule evaluation.
- x-kubernetes-preserve-unknown-fields: true
- message:
- description: Message is an optional display
- message
- type: string
- operator:
- description: |-
- Operator is the conditional operation to perform. Valid operators are:
- Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
- GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
- DurationLessThanOrEquals, DurationLessThan
- enum:
- - Equals
- - NotEquals
- - In
- - AnyIn
- - AllIn
- - NotIn
- - AnyNotIn
- - AllNotIn
- - GreaterThanOrEquals
- - GreaterThan
- - LessThanOrEquals
- - LessThan
- - DurationGreaterThanOrEquals
- - DurationGreaterThan
- - DurationLessThanOrEquals
- - DurationLessThan
- type: string
- value:
- description: |-
- Value is the conditional value, or set of values. The values can be fixed set
- or can be variables declared using JMESPath.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: array
- any:
- description: |-
- AnyConditions enable variable-based conditional rule execution. This is useful for
- finer control of when an rule is applied. A condition can reference object data
- using JMESPath notation.
- Here, at least one of the conditions need to pass
- items:
- description: Condition defines variable-based
- conditional criteria for rule execution.
- properties:
- key:
- description: Key is the context entry (using
- JMESPath) for conditional rule evaluation.
- x-kubernetes-preserve-unknown-fields: true
- message:
- description: Message is an optional display
- message
- type: string
- operator:
- description: |-
- Operator is the conditional operation to perform. Valid operators are:
- Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
- GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
- DurationLessThanOrEquals, DurationLessThan
- enum:
- - Equals
- - NotEquals
- - In
- - AnyIn
- - AllIn
- - NotIn
- - AnyNotIn
- - AllNotIn
- - GreaterThanOrEquals
- - GreaterThan
- - LessThanOrEquals
- - LessThan
- - DurationGreaterThanOrEquals
- - DurationGreaterThan
- - DurationLessThanOrEquals
- - DurationLessThan
- type: string
- value:
- description: |-
- Value is the conditional value, or set of values. The values can be fixed set
- or can be variables declared using JMESPath.
- x-kubernetes-preserve-unknown-fields: true
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
type: object
type: array
type: object
x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
type: object
type: array
- mutateExistingOnPolicyUpdate:
- description: MutateExistingOnPolicyUpdate controls if the
- mutateExisting rule will be applied on policy events.
+ generateExisting:
+ description: |-
+ GenerateExisting controls whether to trigger the rule in existing resources
+ If is set to "true" the rule will be triggered and applied to existing matched resources.
type: boolean
- patchStrategicMerge:
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ orphanDownstreamOnPolicyDelete:
description: |-
- PatchStrategicMerge is a strategic merge patch used to modify resources.
- See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
- and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
- x-kubernetes-preserve-unknown-fields: true
- patchesJson6902:
+ OrphanDownstreamOnPolicyDelete controls whether generated resources should be deleted when the rule that generated
+ them is deleted with synchronization enabled. This option is only applicable to generate rules of the data type.
+ See https://kyverno.io/docs/writing-policies/generate/#data-examples.
+ Defaults to "false" if not specified.
+ type: boolean
+ synchronize:
description: |-
- PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
- See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ Synchronize controls if generated resources should be kept in-sync with their source resource.
+ If Synchronize is set to "true" changes to generated resources will be overwritten with resource
+ data from Data or the resource specified in the Clone declaration.
+ Optional. Defaults to "false" if not specified.
+ type: boolean
+ uid:
+ description: UID specifies the resource uid.
type: string
- targets:
- description: Targets defines the target resources to be
- mutated.
- items:
- description: TargetResourceSpec defines targets for mutating
- existing resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
- properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
- items:
- description: RequestData contains the
- HTTP POST data
- properties:
- key:
- description: Key is a unique identifier
- for the data value
- type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
- required:
- - key
- - value
- type: object
- type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- method:
- default: GET
- description: Method is the HTTP request
- type (GET or POST). Defaults to GET.
- enum:
- - GET
- - POST
- type: string
- service:
+ type: object
+ imageExtractors:
+ additionalProperties:
+ items:
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath expression to apply to the image value.
+ This is useful when the extracted image begins with a prefix like 'docker://'.
+ The 'trim_prefix' function may be used to trim the prefix: trim_prefix(@, 'docker://').
+ Note - Image digest mutation may not be used when applying a JMESPAth to an image.
+ type: string
+ key:
+ description: |-
+ Key is an optional name of the field within 'path' that will be used to uniquely identify an image.
+ Note - this field MUST be unique.
+ type: string
+ name:
+ description: |-
+ Name is the entry the image will be available under 'images.' in the context.
+ If this field is not defined, image entries will appear under 'images.custom'.
+ type: string
+ path:
+ description: |-
+ Path is the path to the object containing the image field in a custom resource.
+ It should be slash-separated. Each slash-separated key must be a valid YAML key or a wildcard '*'.
+ Wildcard keys are expanded in case of arrays or objects.
+ type: string
+ value:
+ description: |-
+ Value is an optional name of the field within 'path' that points to the image URI.
+ This is useful when a custom 'key' is also defined.
+ type: string
+ required:
+ - path
+ type: object
+ type: array
+ description: |-
+ ImageExtractors defines a mapping from kinds to ImageExtractorConfigs.
+ This config is only valid for verifyImages rules.
+ type: object
+ match:
+ description: |-
+ MatchResources defines when this policy rule should be applied. The match
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the user name or role.
+ At least one kind is required.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- caBundle:
- description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
+ key:
+ description: key is the label key that
+ the selector applies to.
type: string
- url:
+ operator:
description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
- required:
- - url
- type: object
- urlPath:
- description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
- type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
- properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap
- namespace.
- type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is
- a reference to a cached global context entry.
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context
- entry
- type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
- description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential
- providers required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
+ values:
description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- value:
- description: Value is any arbitrary JSON
- object representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
type: object
+ x-kubernetes-map-type: atomic
type: array
- kind:
- description: Kind specifies resource kind.
- type: string
- name:
- description: Name specifies the resource name.
- type: string
- namespace:
- description: Namespace specifies resource namespace.
- type: string
- preconditions:
- description: |-
- Preconditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
- of conditions (without `any` or `all` statements is supported for backwards compatibility but
- will be deprecated in the next major release.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- x-kubernetes-preserve-unknown-fields: true
- uid:
- description: UID specifies the resource uid.
- type: string
type: object
type: array
- type: object
- name:
- description: Name is a label to identify the rule, It must be
- unique within the policy.
- maxLength: 63
- type: string
- preconditions:
- description: |-
- Preconditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
- of conditions (without `any` or `all` statements is supported for backwards compatibility but
- will be deprecated in the next major release.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- x-kubernetes-preserve-unknown-fields: true
- skipBackgroundRequests:
- default: true
- description: |-
- SkipBackgroundRequests bypasses admission requests that are sent by the background controller.
- The default value is set to "true", it must be set to "false" to apply
- generate and mutateExisting rules to those requests.
- type: boolean
- validate:
- description: Validation is used to validate matching resources.
- properties:
- anyPattern:
- description: |-
- AnyPattern specifies list of validation patterns. At least one of the patterns
- must be satisfied for the validation rule to succeed.
- x-kubernetes-preserve-unknown-fields: true
- assert:
- description: Assert defines a kyverno-json assertion tree.
- type: object
- x-kubernetes-preserve-unknown-fields: true
- cel:
- description: CEL allows validation checks using the Common
- Expression Language (https://kubernetes.io/docs/reference/using-api/cel/).
- properties:
- auditAnnotations:
- description: AuditAnnotations contains CEL expressions
- which are used to produce audit annotations for the
- audit event of the API request.
- items:
- description: AuditAnnotation describes how to produce
- an audit annotation for an API request.
+ any:
+ description: Any allows specifying resources which will
+ be ORed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
properties:
- key:
+ annotations:
+ additionalProperties:
+ type: string
description: |-
- key specifies the audit annotation key. The audit annotation keys of
- a ValidatingAdmissionPolicy must be unique. The key must be a qualified
- name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
-
-
- The key is combined with the resource name of the
- ValidatingAdmissionPolicy to construct an audit annotation key:
- "{ValidatingAdmissionPolicy name}/{key}".
-
-
- If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
- and the same audit annotation key, the annotation key will be identical.
- In this case, the first annotation written with the key will be included
- in the audit event and all subsequent annotations with the same key
- will be discarded.
-
-
- Required.
- type: string
- valueExpression:
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
description: |-
- valueExpression represents the expression which is evaluated by CEL to
- produce an audit annotation value. The expression must evaluate to either
- a string or null value. If the expression evaluates to a string, the
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide role
+ names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used to
+ match a specific action.
+ items:
+ description: AdmissionOperation can have one of the
+ values CREATE, UPDATE, CONNECT, DELETE, which are
+ used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ mutate:
+ description: Mutation is used to modify matching resources.
+ properties:
+ foreach:
+ description: ForEach applies mutation rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
+ items:
+ description: ForEachMutation applies mutation rules to
+ a list of sub-elements by creating a context for each
+ entry in the list and looping over it to apply the specified
+ logic.
+ properties:
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ foreach:
+ description: Foreach declares a nested foreach iterator
+ x-kubernetes-preserve-unknown-fields: true
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
+ type: string
+ order:
+ description: |-
+ Order defines the iteration order on the list.
+ Can be Ascending to iterate from first to last element or Descending to iterate in from last to first element.
+ enum:
+ - Ascending
+ - Descending
+ type: string
+ patchStrategicMerge:
+ description: |-
+ PatchStrategicMerge is a strategic merge patch used to modify resources.
+ See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
+ and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
+ x-kubernetes-preserve-unknown-fields: true
+ patchesJson6902:
+ description: |-
+ PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
+ See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ type: string
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ mutateExistingOnPolicyUpdate:
+ description: MutateExistingOnPolicyUpdate controls if the
+ mutateExisting rule will be applied on policy events.
+ type: boolean
+ patchStrategicMerge:
+ description: |-
+ PatchStrategicMerge is a strategic merge patch used to modify resources.
+ See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
+ and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
+ x-kubernetes-preserve-unknown-fields: true
+ patchesJson6902:
+ description: |-
+ PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
+ See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ type: string
+ targets:
+ description: Targets defines the target resources to be
+ mutated.
+ items:
+ description: TargetResourceSpec defines targets for mutating
+ existing resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
+ description: |-
+ Preconditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
+ of conditions (without `any` or `all` statements is supported for backwards compatibility but
+ will be deprecated in the next major release.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
+ type: object
+ type: array
+ type: object
+ name:
+ description: Name is a label to identify the rule, It must be
+ unique within the policy.
+ maxLength: 63
+ type: string
+ preconditions:
+ description: |-
+ Preconditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
+ of conditions (without `any` or `all` statements is supported for backwards compatibility but
+ will be deprecated in the next major release.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ x-kubernetes-preserve-unknown-fields: true
+ skipBackgroundRequests:
+ default: true
+ description: |-
+ SkipBackgroundRequests bypasses admission requests that are sent by the background controller.
+ The default value is set to "true", it must be set to "false" to apply
+ generate and mutateExisting rules to those requests.
+ type: boolean
+ validate:
+ description: Validation is used to validate matching resources.
+ properties:
+ anyPattern:
+ description: |-
+ AnyPattern specifies list of validation patterns. At least one of the patterns
+ must be satisfied for the validation rule to succeed.
+ x-kubernetes-preserve-unknown-fields: true
+ assert:
+ description: Assert defines a kyverno-json assertion tree.
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ cel:
+ description: CEL allows validation checks using the Common
+ Expression Language (https://kubernetes.io/docs/reference/using-api/cel/).
+ properties:
+ auditAnnotations:
+ description: AuditAnnotations contains CEL expressions
+ which are used to produce audit annotations for the
+ audit event of the API request.
+ items:
+ description: AuditAnnotation describes how to produce
+ an audit annotation for an API request.
+ properties:
+ key:
+ description: |-
+ key specifies the audit annotation key. The audit annotation keys of
+ a ValidatingAdmissionPolicy must be unique. The key must be a qualified
+ name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
+
+
+ The key is combined with the resource name of the
+ ValidatingAdmissionPolicy to construct an audit annotation key:
+ "{ValidatingAdmissionPolicy name}/{key}".
+
+
+ If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
+ and the same audit annotation key, the annotation key will be identical.
+ In this case, the first annotation written with the key will be included
+ in the audit event and all subsequent annotations with the same key
+ will be discarded.
+
+
+ Required.
+ type: string
+ valueExpression:
+ description: |-
+ valueExpression represents the expression which is evaluated by CEL to
+ produce an audit annotation value. The expression must evaluate to either
+ a string or null value. If the expression evaluates to a string, the
audit annotation is included with the string value. If the expression
evaluates to null or empty string the audit annotation will be omitted.
The valueExpression may be no longer than 5kb in length.
@@ -4531,460 +4932,956 @@ spec:
Required.
type: string
- required:
- - expression
- - name
+ required:
+ - expression
+ - name
+ type: object
+ type: array
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the HTTP POST
+ data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request type (GET
+ or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is a reference
+ to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential providers
+ required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object
+ representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
type: array
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
items:
- description: RequestData contains the HTTP POST
- data
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
+ items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
properties:
- key:
- description: Key is a unique identifier
- for the data value
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
required:
- - key
- - value
+ - kind
+ - name
type: object
+ x-kubernetes-map-type: atomic
type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- method:
- default: GET
- description: Method is the HTTP request type (GET
- or POST). Defaults to GET.
- enum:
- - GET
- - POST
- type: string
- service:
- description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
+ type: object
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
properties:
- caBundle:
+ annotations:
+ additionalProperties:
+ type: string
description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
- type: string
- url:
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
type: string
- required:
- - url
- type: object
- urlPath:
- description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
- type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
- properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap namespace.
- type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is a reference
- to a cached global context entry.
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context entry
- type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
+ names:
description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential providers
- required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
type: string
type: array
- secrets:
+ namespaceSelector:
description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
type: string
type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object
- representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
- items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
items:
type: string
type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
type: string
- type: array
- name:
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one of
+ the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list
+ of sub-elements by creating a context for each entry
+ in the list and looping over it to apply the specified
+ logic.
items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
kinds:
description: Kinds is a list of resource kinds.
items:
type: string
type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ selector:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list
@@ -5030,416 +5927,329 @@ spec:
type: object
type: object
x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
- items:
+ type: object
+ context:
+ description: Context defines variables and data
+ sources that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains
+ the HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data
+ value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap
+ reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference
+ is a reference to a cached global context
+ entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials
+ provides credentials that will be
+ used for authentication with registry
properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry
+ allows insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ description: Name is the variable name.
type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one of
- the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ variable:
+ description: Variable defines an arbitrary
+ JMESPath context variable that can be
+ defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
+ value:
+ description: Value is any arbitrary
+ JSON object representable in YAML
+ or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source
- resource used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ description: Namespace specifies resource namespace.
type: string
- type: array
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
+ type: object
+ type: array
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -9151,62 +9961,272 @@ spec:
- google
- github
type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath context
+ variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object representable
+ in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
type: string
- type: array
- type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath context
- variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object representable
- in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
items:
description: ResourceFilter allow users to "AND" or "OR"
between resources
@@ -9311,22 +10331,236 @@ spec:
"UPDATE", "CONNECT", "DELETE"], which are used
to match a specific action.
items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source resource
+ used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
+ items:
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
type: string
type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
selector:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list of
@@ -9373,344 +10607,321 @@ spec:
type: object
x-kubernetes-map-type: atomic
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
items:
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
+ apiCall:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
- items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: key is the label key that
- the selector applies to.
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- operator:
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: array
- selector:
+ any:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
type: object
type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source resource
- used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -13891,138 +15102,547 @@ spec:
map is equivalent to an element of matchExpressions, whose key field is "key", the
operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list
+ of sub-elements by creating a context for each entry
+ in the list and looping over it to apply the specified
+ logic.
+ items:
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ context:
+ description: Context defines variables and data
+ sources that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains
+ the HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data
+ value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap
+ reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference
+ is a reference to a cached global context
+ entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials
+ provides credentials that will be
+ used for authentication with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry
+ allows insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary
+ JMESPath context variable that can be
+ defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary
+ JSON object representable in YAML
+ or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
type: string
- required:
- - kind
- - name
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source
- resource used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
diff --git a/cmd/cli/kubectl-kyverno/data/crds/kyverno.io_policies.yaml b/cmd/cli/kubectl-kyverno/data/crds/kyverno.io_policies.yaml
index a0f27bd5e8bb..680caa298a2e 100644
--- a/cmd/cli/kubectl-kyverno/data/crds/kyverno.io_policies.yaml
+++ b/cmd/cli/kubectl-kyverno/data/crds/kyverno.io_policies.yaml
@@ -1072,135 +1072,46 @@ spec:
At most one of Data or Clone must be specified. If neither are provided, the generated
resource will be created with default data only.
x-kubernetes-preserve-unknown-fields: true
- generateExisting:
- description: |-
- GenerateExisting controls whether to trigger the rule in existing resources
- If is set to "true" the rule will be triggered and applied to existing matched resources.
- type: boolean
- kind:
- description: Kind specifies resource kind.
- type: string
- name:
- description: Name specifies the resource name.
- type: string
- namespace:
- description: Namespace specifies resource namespace.
- type: string
- orphanDownstreamOnPolicyDelete:
- description: |-
- OrphanDownstreamOnPolicyDelete controls whether generated resources should be deleted when the rule that generated
- them is deleted with synchronization enabled. This option is only applicable to generate rules of the data type.
- See https://kyverno.io/docs/writing-policies/generate/#data-examples.
- Defaults to "false" if not specified.
- type: boolean
- synchronize:
- description: |-
- Synchronize controls if generated resources should be kept in-sync with their source resource.
- If Synchronize is set to "true" changes to generated resources will be overwritten with resource
- data from Data or the resource specified in the Clone declaration.
- Optional. Defaults to "false" if not specified.
- type: boolean
- uid:
- description: UID specifies the resource uid.
- type: string
- type: object
- imageExtractors:
- additionalProperties:
- items:
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath expression to apply to the image value.
- This is useful when the extracted image begins with a prefix like 'docker://'.
- The 'trim_prefix' function may be used to trim the prefix: trim_prefix(@, 'docker://').
- Note - Image digest mutation may not be used when applying a JMESPAth to an image.
- type: string
- key:
- description: |-
- Key is an optional name of the field within 'path' that will be used to uniquely identify an image.
- Note - this field MUST be unique.
- type: string
- name:
- description: |-
- Name is the entry the image will be available under 'images.' in the context.
- If this field is not defined, image entries will appear under 'images.custom'.
- type: string
- path:
- description: |-
- Path is the path to the object containing the image field in a custom resource.
- It should be slash-separated. Each slash-separated key must be a valid YAML key or a wildcard '*'.
- Wildcard keys are expanded in case of arrays or objects.
- type: string
- value:
- description: |-
- Value is an optional name of the field within 'path' that points to the image URI.
- This is useful when a custom 'key' is also defined.
- type: string
- required:
- - path
- type: object
- type: array
- description: |-
- ImageExtractors defines a mapping from kinds to ImageExtractorConfigs.
- This config is only valid for verifyImages rules.
- type: object
- match:
- description: |-
- MatchResources defines when this policy rule should be applied. The match
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the user name or role.
- At least one kind is required.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
+ foreach:
+ description: ForEach applies generate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
kinds:
description: Kinds is a list of resource kinds.
items:
type: string
type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ selector:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list of
@@ -1246,1168 +1157,1658 @@ spec:
type: object
type: object
x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ type: object
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
+ caBundle:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- values:
+ url:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
required:
- - key
- - operator
+ - url
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
- items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ urlPath:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ description: Name is the variable name.
type: string
- required:
- - kind
- - name
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide role
- names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ kind:
+ description: Kind specifies resource kind.
type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ name:
+ description: Name specifies the resource name.
type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used to
- match a specific action.
- items:
- description: AdmissionOperation can have one of the
- values CREATE, UPDATE, CONNECT, DELETE, which are
- used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
+ namespace:
+ description: Namespace specifies resource namespace.
type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- mutate:
- description: Mutation is used to modify matching resources.
- properties:
- foreach:
- description: ForEach applies mutation rules to a list of
- sub-elements by creating a context for each entry in the
- list and looping over it to apply the specified logic.
- items:
- description: ForEachMutation applies mutation rules to
- a list of sub-elements by creating a context for each
- entry in the list and looping over it to apply the specified
- logic.
- properties:
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
- items:
- description: RequestData contains the
- HTTP POST data
- properties:
- key:
- description: Key is a unique identifier
- for the data value
- type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
- required:
- - key
- - value
- type: object
- type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
type: string
- method:
- default: GET
- description: Method is the HTTP request
- type (GET or POST). Defaults to GET.
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
enum:
- - GET
- - POST
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- service:
- description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
- properties:
- caBundle:
- description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
- type: string
- url:
- description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
- type: string
- required:
- - url
- type: object
- urlPath:
+ value:
description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap
- namespace.
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is
- a reference to a cached global context entry.
- properties:
- jmesPath:
+ operator:
description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context
- entry
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
- description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential
- providers required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
- type: string
- type: array
- type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON
- object representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: object
- type: array
- foreach:
- description: Foreach declares a nested foreach iterator
- x-kubernetes-preserve-unknown-fields: true
- list:
- description: |-
- List specifies a JMESPath expression that results in one or more elements
- to which the validation logic is applied.
- type: string
- order:
- description: |-
- Order defines the iteration order on the list.
- Can be Ascending to iterate from first to last element or Descending to iterate in from last to first element.
- enum:
- - Ascending
- - Descending
- type: string
- patchStrategicMerge:
- description: |-
- PatchStrategicMerge is a strategic merge patch used to modify resources.
- See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
- and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
- x-kubernetes-preserve-unknown-fields: true
- patchesJson6902:
- description: |-
- PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
- See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
- type: string
- preconditions:
- description: |-
- AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- properties:
- all:
- description: |-
- AllConditions enable variable-based conditional rule execution. This is useful for
- finer control of when an rule is applied. A condition can reference object data
- using JMESPath notation.
- Here, all of the conditions need to pass
- items:
- description: Condition defines variable-based
- conditional criteria for rule execution.
- properties:
- key:
- description: Key is the context entry (using
- JMESPath) for conditional rule evaluation.
- x-kubernetes-preserve-unknown-fields: true
- message:
- description: Message is an optional display
- message
- type: string
- operator:
- description: |-
- Operator is the conditional operation to perform. Valid operators are:
- Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
- GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
- DurationLessThanOrEquals, DurationLessThan
- enum:
- - Equals
- - NotEquals
- - In
- - AnyIn
- - AllIn
- - NotIn
- - AnyNotIn
- - AllNotIn
- - GreaterThanOrEquals
- - GreaterThan
- - LessThanOrEquals
- - LessThan
- - DurationGreaterThanOrEquals
- - DurationGreaterThan
- - DurationLessThanOrEquals
- - DurationLessThan
- type: string
- value:
- description: |-
- Value is the conditional value, or set of values. The values can be fixed set
- or can be variables declared using JMESPath.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: array
- any:
- description: |-
- AnyConditions enable variable-based conditional rule execution. This is useful for
- finer control of when an rule is applied. A condition can reference object data
- using JMESPath notation.
- Here, at least one of the conditions need to pass
- items:
- description: Condition defines variable-based
- conditional criteria for rule execution.
- properties:
- key:
- description: Key is the context entry (using
- JMESPath) for conditional rule evaluation.
- x-kubernetes-preserve-unknown-fields: true
- message:
- description: Message is an optional display
- message
- type: string
- operator:
- description: |-
- Operator is the conditional operation to perform. Valid operators are:
- Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
- GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
- DurationLessThanOrEquals, DurationLessThan
- enum:
- - Equals
- - NotEquals
- - In
- - AnyIn
- - AllIn
- - NotIn
- - AnyNotIn
- - AllNotIn
- - GreaterThanOrEquals
- - GreaterThan
- - LessThanOrEquals
- - LessThan
- - DurationGreaterThanOrEquals
- - DurationGreaterThan
- - DurationLessThanOrEquals
- - DurationLessThan
- type: string
- value:
- description: |-
- Value is the conditional value, or set of values. The values can be fixed set
- or can be variables declared using JMESPath.
- x-kubernetes-preserve-unknown-fields: true
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
type: object
type: array
type: object
x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
type: object
type: array
- mutateExistingOnPolicyUpdate:
- description: MutateExistingOnPolicyUpdate controls if the
- mutateExisting rule will be applied on policy events.
+ generateExisting:
+ description: |-
+ GenerateExisting controls whether to trigger the rule in existing resources
+ If is set to "true" the rule will be triggered and applied to existing matched resources.
type: boolean
- patchStrategicMerge:
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ orphanDownstreamOnPolicyDelete:
description: |-
- PatchStrategicMerge is a strategic merge patch used to modify resources.
- See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
- and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
- x-kubernetes-preserve-unknown-fields: true
- patchesJson6902:
+ OrphanDownstreamOnPolicyDelete controls whether generated resources should be deleted when the rule that generated
+ them is deleted with synchronization enabled. This option is only applicable to generate rules of the data type.
+ See https://kyverno.io/docs/writing-policies/generate/#data-examples.
+ Defaults to "false" if not specified.
+ type: boolean
+ synchronize:
description: |-
- PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
- See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ Synchronize controls if generated resources should be kept in-sync with their source resource.
+ If Synchronize is set to "true" changes to generated resources will be overwritten with resource
+ data from Data or the resource specified in the Clone declaration.
+ Optional. Defaults to "false" if not specified.
+ type: boolean
+ uid:
+ description: UID specifies the resource uid.
type: string
- targets:
- description: Targets defines the target resources to be
- mutated.
- items:
- description: TargetResourceSpec defines targets for mutating
- existing resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
- properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
- items:
- description: RequestData contains the
- HTTP POST data
- properties:
- key:
- description: Key is a unique identifier
- for the data value
- type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
- required:
- - key
- - value
- type: object
- type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- method:
- default: GET
- description: Method is the HTTP request
- type (GET or POST). Defaults to GET.
- enum:
- - GET
- - POST
- type: string
- service:
+ type: object
+ imageExtractors:
+ additionalProperties:
+ items:
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath expression to apply to the image value.
+ This is useful when the extracted image begins with a prefix like 'docker://'.
+ The 'trim_prefix' function may be used to trim the prefix: trim_prefix(@, 'docker://').
+ Note - Image digest mutation may not be used when applying a JMESPAth to an image.
+ type: string
+ key:
+ description: |-
+ Key is an optional name of the field within 'path' that will be used to uniquely identify an image.
+ Note - this field MUST be unique.
+ type: string
+ name:
+ description: |-
+ Name is the entry the image will be available under 'images.' in the context.
+ If this field is not defined, image entries will appear under 'images.custom'.
+ type: string
+ path:
+ description: |-
+ Path is the path to the object containing the image field in a custom resource.
+ It should be slash-separated. Each slash-separated key must be a valid YAML key or a wildcard '*'.
+ Wildcard keys are expanded in case of arrays or objects.
+ type: string
+ value:
+ description: |-
+ Value is an optional name of the field within 'path' that points to the image URI.
+ This is useful when a custom 'key' is also defined.
+ type: string
+ required:
+ - path
+ type: object
+ type: array
+ description: |-
+ ImageExtractors defines a mapping from kinds to ImageExtractorConfigs.
+ This config is only valid for verifyImages rules.
+ type: object
+ match:
+ description: |-
+ MatchResources defines when this policy rule should be applied. The match
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the user name or role.
+ At least one kind is required.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- caBundle:
- description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
+ key:
+ description: key is the label key that
+ the selector applies to.
type: string
- url:
+ operator:
description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
- required:
- - url
- type: object
- urlPath:
- description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
- type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
- properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap
- namespace.
- type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is
- a reference to a cached global context entry.
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context
- entry
- type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
- description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential
- providers required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
+ values:
description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- value:
- description: Value is any arbitrary JSON
- object representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
type: object
+ x-kubernetes-map-type: atomic
type: array
- kind:
- description: Kind specifies resource kind.
- type: string
- name:
- description: Name specifies the resource name.
- type: string
- namespace:
- description: Namespace specifies resource namespace.
- type: string
- preconditions:
- description: |-
- Preconditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
- of conditions (without `any` or `all` statements is supported for backwards compatibility but
- will be deprecated in the next major release.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- x-kubernetes-preserve-unknown-fields: true
- uid:
- description: UID specifies the resource uid.
- type: string
type: object
type: array
- type: object
- name:
- description: Name is a label to identify the rule, It must be
- unique within the policy.
- maxLength: 63
- type: string
- preconditions:
- description: |-
- Preconditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
- of conditions (without `any` or `all` statements is supported for backwards compatibility but
- will be deprecated in the next major release.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- x-kubernetes-preserve-unknown-fields: true
- skipBackgroundRequests:
- default: true
- description: |-
- SkipBackgroundRequests bypasses admission requests that are sent by the background controller.
- The default value is set to "true", it must be set to "false" to apply
- generate and mutateExisting rules to those requests.
- type: boolean
- validate:
- description: Validation is used to validate matching resources.
- properties:
- anyPattern:
- description: |-
- AnyPattern specifies list of validation patterns. At least one of the patterns
- must be satisfied for the validation rule to succeed.
- x-kubernetes-preserve-unknown-fields: true
- assert:
- description: Assert defines a kyverno-json assertion tree.
- type: object
- x-kubernetes-preserve-unknown-fields: true
- cel:
- description: CEL allows validation checks using the Common
- Expression Language (https://kubernetes.io/docs/reference/using-api/cel/).
- properties:
- auditAnnotations:
- description: AuditAnnotations contains CEL expressions
- which are used to produce audit annotations for the
- audit event of the API request.
- items:
- description: AuditAnnotation describes how to produce
- an audit annotation for an API request.
+ any:
+ description: Any allows specifying resources which will
+ be ORed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
properties:
- key:
+ annotations:
+ additionalProperties:
+ type: string
description: |-
- key specifies the audit annotation key. The audit annotation keys of
- a ValidatingAdmissionPolicy must be unique. The key must be a qualified
- name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
-
-
- The key is combined with the resource name of the
- ValidatingAdmissionPolicy to construct an audit annotation key:
- "{ValidatingAdmissionPolicy name}/{key}".
-
-
- If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
- and the same audit annotation key, the annotation key will be identical.
- In this case, the first annotation written with the key will be included
- in the audit event and all subsequent annotations with the same key
- will be discarded.
-
-
- Required.
- type: string
- valueExpression:
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
description: |-
- valueExpression represents the expression which is evaluated by CEL to
- produce an audit annotation value. The expression must evaluate to either
- a string or null value. If the expression evaluates to a string, the
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide role
+ names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used to
+ match a specific action.
+ items:
+ description: AdmissionOperation can have one of the
+ values CREATE, UPDATE, CONNECT, DELETE, which are
+ used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ mutate:
+ description: Mutation is used to modify matching resources.
+ properties:
+ foreach:
+ description: ForEach applies mutation rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
+ items:
+ description: ForEachMutation applies mutation rules to
+ a list of sub-elements by creating a context for each
+ entry in the list and looping over it to apply the specified
+ logic.
+ properties:
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ foreach:
+ description: Foreach declares a nested foreach iterator
+ x-kubernetes-preserve-unknown-fields: true
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
+ type: string
+ order:
+ description: |-
+ Order defines the iteration order on the list.
+ Can be Ascending to iterate from first to last element or Descending to iterate in from last to first element.
+ enum:
+ - Ascending
+ - Descending
+ type: string
+ patchStrategicMerge:
+ description: |-
+ PatchStrategicMerge is a strategic merge patch used to modify resources.
+ See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
+ and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
+ x-kubernetes-preserve-unknown-fields: true
+ patchesJson6902:
+ description: |-
+ PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
+ See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ type: string
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ mutateExistingOnPolicyUpdate:
+ description: MutateExistingOnPolicyUpdate controls if the
+ mutateExisting rule will be applied on policy events.
+ type: boolean
+ patchStrategicMerge:
+ description: |-
+ PatchStrategicMerge is a strategic merge patch used to modify resources.
+ See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
+ and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
+ x-kubernetes-preserve-unknown-fields: true
+ patchesJson6902:
+ description: |-
+ PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
+ See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ type: string
+ targets:
+ description: Targets defines the target resources to be
+ mutated.
+ items:
+ description: TargetResourceSpec defines targets for mutating
+ existing resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
+ description: |-
+ Preconditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
+ of conditions (without `any` or `all` statements is supported for backwards compatibility but
+ will be deprecated in the next major release.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
+ type: object
+ type: array
+ type: object
+ name:
+ description: Name is a label to identify the rule, It must be
+ unique within the policy.
+ maxLength: 63
+ type: string
+ preconditions:
+ description: |-
+ Preconditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
+ of conditions (without `any` or `all` statements is supported for backwards compatibility but
+ will be deprecated in the next major release.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ x-kubernetes-preserve-unknown-fields: true
+ skipBackgroundRequests:
+ default: true
+ description: |-
+ SkipBackgroundRequests bypasses admission requests that are sent by the background controller.
+ The default value is set to "true", it must be set to "false" to apply
+ generate and mutateExisting rules to those requests.
+ type: boolean
+ validate:
+ description: Validation is used to validate matching resources.
+ properties:
+ anyPattern:
+ description: |-
+ AnyPattern specifies list of validation patterns. At least one of the patterns
+ must be satisfied for the validation rule to succeed.
+ x-kubernetes-preserve-unknown-fields: true
+ assert:
+ description: Assert defines a kyverno-json assertion tree.
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ cel:
+ description: CEL allows validation checks using the Common
+ Expression Language (https://kubernetes.io/docs/reference/using-api/cel/).
+ properties:
+ auditAnnotations:
+ description: AuditAnnotations contains CEL expressions
+ which are used to produce audit annotations for the
+ audit event of the API request.
+ items:
+ description: AuditAnnotation describes how to produce
+ an audit annotation for an API request.
+ properties:
+ key:
+ description: |-
+ key specifies the audit annotation key. The audit annotation keys of
+ a ValidatingAdmissionPolicy must be unique. The key must be a qualified
+ name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
+
+
+ The key is combined with the resource name of the
+ ValidatingAdmissionPolicy to construct an audit annotation key:
+ "{ValidatingAdmissionPolicy name}/{key}".
+
+
+ If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
+ and the same audit annotation key, the annotation key will be identical.
+ In this case, the first annotation written with the key will be included
+ in the audit event and all subsequent annotations with the same key
+ will be discarded.
+
+
+ Required.
+ type: string
+ valueExpression:
+ description: |-
+ valueExpression represents the expression which is evaluated by CEL to
+ produce an audit annotation value. The expression must evaluate to either
+ a string or null value. If the expression evaluates to a string, the
audit annotation is included with the string value. If the expression
evaluates to null or empty string the audit annotation will be omitted.
The valueExpression may be no longer than 5kb in length.
@@ -4533,460 +4934,956 @@ spec:
Required.
type: string
- required:
- - expression
- - name
+ required:
+ - expression
+ - name
+ type: object
+ type: array
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the HTTP POST
+ data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request type (GET
+ or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is a reference
+ to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential providers
+ required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object
+ representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
type: array
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
items:
- description: RequestData contains the HTTP POST
- data
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
+ items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
properties:
- key:
- description: Key is a unique identifier
- for the data value
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
required:
- - key
- - value
+ - kind
+ - name
type: object
+ x-kubernetes-map-type: atomic
type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- method:
- default: GET
- description: Method is the HTTP request type (GET
- or POST). Defaults to GET.
- enum:
- - GET
- - POST
- type: string
- service:
- description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
+ type: object
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
properties:
- caBundle:
+ annotations:
+ additionalProperties:
+ type: string
description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
- type: string
- url:
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
type: string
- required:
- - url
- type: object
- urlPath:
- description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
- type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
- properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap namespace.
- type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is a reference
- to a cached global context entry.
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context entry
- type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
+ names:
description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential providers
- required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
type: string
type: array
- secrets:
+ namespaceSelector:
description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
type: string
type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object
- representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
- items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
items:
type: string
type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
type: string
- type: array
- name:
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one of
+ the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list
+ of sub-elements by creating a context for each entry
+ in the list and looping over it to apply the specified
+ logic.
items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
kinds:
description: Kinds is a list of resource kinds.
items:
type: string
type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ selector:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list
@@ -5032,416 +5929,329 @@ spec:
type: object
type: object
x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
- items:
+ type: object
+ context:
+ description: Context defines variables and data
+ sources that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains
+ the HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data
+ value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap
+ reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference
+ is a reference to a cached global context
+ entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials
+ provides credentials that will be
+ used for authentication with registry
properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry
+ allows insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ description: Name is the variable name.
type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one of
- the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ variable:
+ description: Variable defines an arbitrary
+ JMESPath context variable that can be
+ defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
+ value:
+ description: Value is any arbitrary
+ JSON object representable in YAML
+ or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source
- resource used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ description: Namespace specifies resource namespace.
type: string
- type: array
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
+ type: object
+ type: array
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -9154,62 +9964,272 @@ spec:
- google
- github
type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath context
+ variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object representable
+ in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
type: string
- type: array
- type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath context
- variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object representable
- in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
items:
description: ResourceFilter allow users to "AND" or "OR"
between resources
@@ -9314,22 +10334,236 @@ spec:
"UPDATE", "CONNECT", "DELETE"], which are used
to match a specific action.
items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source resource
+ used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
+ items:
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
type: string
type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
selector:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list of
@@ -9376,344 +10610,321 @@ spec:
type: object
x-kubernetes-map-type: atomic
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
items:
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
+ apiCall:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
- items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: key is the label key that
- the selector applies to.
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- operator:
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: array
- selector:
+ any:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
type: object
type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source resource
- used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -13894,138 +15105,547 @@ spec:
map is equivalent to an element of matchExpressions, whose key field is "key", the
operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list
+ of sub-elements by creating a context for each entry
+ in the list and looping over it to apply the specified
+ logic.
+ items:
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ context:
+ description: Context defines variables and data
+ sources that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains
+ the HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data
+ value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap
+ reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference
+ is a reference to a cached global context
+ entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials
+ provides credentials that will be
+ used for authentication with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry
+ allows insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary
+ JMESPath context variable that can be
+ defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary
+ JSON object representable in YAML
+ or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
type: string
- required:
- - kind
- - name
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source
- resource used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
diff --git a/config/crds/kyverno/kyverno.io_clusterpolicies.yaml b/config/crds/kyverno/kyverno.io_clusterpolicies.yaml
index 792f9c04bee8..5be955d0f39c 100644
--- a/config/crds/kyverno/kyverno.io_clusterpolicies.yaml
+++ b/config/crds/kyverno/kyverno.io_clusterpolicies.yaml
@@ -1071,135 +1071,46 @@ spec:
At most one of Data or Clone must be specified. If neither are provided, the generated
resource will be created with default data only.
x-kubernetes-preserve-unknown-fields: true
- generateExisting:
- description: |-
- GenerateExisting controls whether to trigger the rule in existing resources
- If is set to "true" the rule will be triggered and applied to existing matched resources.
- type: boolean
- kind:
- description: Kind specifies resource kind.
- type: string
- name:
- description: Name specifies the resource name.
- type: string
- namespace:
- description: Namespace specifies resource namespace.
- type: string
- orphanDownstreamOnPolicyDelete:
- description: |-
- OrphanDownstreamOnPolicyDelete controls whether generated resources should be deleted when the rule that generated
- them is deleted with synchronization enabled. This option is only applicable to generate rules of the data type.
- See https://kyverno.io/docs/writing-policies/generate/#data-examples.
- Defaults to "false" if not specified.
- type: boolean
- synchronize:
- description: |-
- Synchronize controls if generated resources should be kept in-sync with their source resource.
- If Synchronize is set to "true" changes to generated resources will be overwritten with resource
- data from Data or the resource specified in the Clone declaration.
- Optional. Defaults to "false" if not specified.
- type: boolean
- uid:
- description: UID specifies the resource uid.
- type: string
- type: object
- imageExtractors:
- additionalProperties:
- items:
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath expression to apply to the image value.
- This is useful when the extracted image begins with a prefix like 'docker://'.
- The 'trim_prefix' function may be used to trim the prefix: trim_prefix(@, 'docker://').
- Note - Image digest mutation may not be used when applying a JMESPAth to an image.
- type: string
- key:
- description: |-
- Key is an optional name of the field within 'path' that will be used to uniquely identify an image.
- Note - this field MUST be unique.
- type: string
- name:
- description: |-
- Name is the entry the image will be available under 'images.' in the context.
- If this field is not defined, image entries will appear under 'images.custom'.
- type: string
- path:
- description: |-
- Path is the path to the object containing the image field in a custom resource.
- It should be slash-separated. Each slash-separated key must be a valid YAML key or a wildcard '*'.
- Wildcard keys are expanded in case of arrays or objects.
- type: string
- value:
- description: |-
- Value is an optional name of the field within 'path' that points to the image URI.
- This is useful when a custom 'key' is also defined.
- type: string
- required:
- - path
- type: object
- type: array
- description: |-
- ImageExtractors defines a mapping from kinds to ImageExtractorConfigs.
- This config is only valid for verifyImages rules.
- type: object
- match:
- description: |-
- MatchResources defines when this policy rule should be applied. The match
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the user name or role.
- At least one kind is required.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
+ foreach:
+ description: ForEach applies generate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
kinds:
description: Kinds is a list of resource kinds.
items:
type: string
type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ selector:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list of
@@ -1245,1168 +1156,1658 @@ spec:
type: object
type: object
x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ type: object
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
+ caBundle:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- values:
+ url:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
required:
- - key
- - operator
+ - url
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
- items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ urlPath:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ description: Name is the variable name.
type: string
- required:
- - kind
- - name
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide role
- names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ kind:
+ description: Kind specifies resource kind.
type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ name:
+ description: Name specifies the resource name.
type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used to
- match a specific action.
- items:
- description: AdmissionOperation can have one of the
- values CREATE, UPDATE, CONNECT, DELETE, which are
- used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
+ namespace:
+ description: Namespace specifies resource namespace.
type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- mutate:
- description: Mutation is used to modify matching resources.
- properties:
- foreach:
- description: ForEach applies mutation rules to a list of
- sub-elements by creating a context for each entry in the
- list and looping over it to apply the specified logic.
- items:
- description: ForEachMutation applies mutation rules to
- a list of sub-elements by creating a context for each
- entry in the list and looping over it to apply the specified
- logic.
- properties:
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
- items:
- description: RequestData contains the
- HTTP POST data
- properties:
- key:
- description: Key is a unique identifier
- for the data value
- type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
- required:
- - key
- - value
- type: object
- type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
type: string
- method:
- default: GET
- description: Method is the HTTP request
- type (GET or POST). Defaults to GET.
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
enum:
- - GET
- - POST
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- service:
- description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
- properties:
- caBundle:
- description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
- type: string
- url:
- description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
- type: string
- required:
- - url
- type: object
- urlPath:
+ value:
description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap
- namespace.
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is
- a reference to a cached global context entry.
- properties:
- jmesPath:
+ operator:
description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context
- entry
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
- description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential
- providers required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
- type: string
- type: array
- type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON
- object representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: object
- type: array
- foreach:
- description: Foreach declares a nested foreach iterator
- x-kubernetes-preserve-unknown-fields: true
- list:
- description: |-
- List specifies a JMESPath expression that results in one or more elements
- to which the validation logic is applied.
- type: string
- order:
- description: |-
- Order defines the iteration order on the list.
- Can be Ascending to iterate from first to last element or Descending to iterate in from last to first element.
- enum:
- - Ascending
- - Descending
- type: string
- patchStrategicMerge:
- description: |-
- PatchStrategicMerge is a strategic merge patch used to modify resources.
- See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
- and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
- x-kubernetes-preserve-unknown-fields: true
- patchesJson6902:
- description: |-
- PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
- See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
- type: string
- preconditions:
- description: |-
- AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- properties:
- all:
- description: |-
- AllConditions enable variable-based conditional rule execution. This is useful for
- finer control of when an rule is applied. A condition can reference object data
- using JMESPath notation.
- Here, all of the conditions need to pass
- items:
- description: Condition defines variable-based
- conditional criteria for rule execution.
- properties:
- key:
- description: Key is the context entry (using
- JMESPath) for conditional rule evaluation.
- x-kubernetes-preserve-unknown-fields: true
- message:
- description: Message is an optional display
- message
- type: string
- operator:
- description: |-
- Operator is the conditional operation to perform. Valid operators are:
- Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
- GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
- DurationLessThanOrEquals, DurationLessThan
- enum:
- - Equals
- - NotEquals
- - In
- - AnyIn
- - AllIn
- - NotIn
- - AnyNotIn
- - AllNotIn
- - GreaterThanOrEquals
- - GreaterThan
- - LessThanOrEquals
- - LessThan
- - DurationGreaterThanOrEquals
- - DurationGreaterThan
- - DurationLessThanOrEquals
- - DurationLessThan
- type: string
- value:
- description: |-
- Value is the conditional value, or set of values. The values can be fixed set
- or can be variables declared using JMESPath.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: array
- any:
- description: |-
- AnyConditions enable variable-based conditional rule execution. This is useful for
- finer control of when an rule is applied. A condition can reference object data
- using JMESPath notation.
- Here, at least one of the conditions need to pass
- items:
- description: Condition defines variable-based
- conditional criteria for rule execution.
- properties:
- key:
- description: Key is the context entry (using
- JMESPath) for conditional rule evaluation.
- x-kubernetes-preserve-unknown-fields: true
- message:
- description: Message is an optional display
- message
- type: string
- operator:
- description: |-
- Operator is the conditional operation to perform. Valid operators are:
- Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
- GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
- DurationLessThanOrEquals, DurationLessThan
- enum:
- - Equals
- - NotEquals
- - In
- - AnyIn
- - AllIn
- - NotIn
- - AnyNotIn
- - AllNotIn
- - GreaterThanOrEquals
- - GreaterThan
- - LessThanOrEquals
- - LessThan
- - DurationGreaterThanOrEquals
- - DurationGreaterThan
- - DurationLessThanOrEquals
- - DurationLessThan
- type: string
- value:
- description: |-
- Value is the conditional value, or set of values. The values can be fixed set
- or can be variables declared using JMESPath.
- x-kubernetes-preserve-unknown-fields: true
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
type: object
type: array
type: object
x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
type: object
type: array
- mutateExistingOnPolicyUpdate:
- description: MutateExistingOnPolicyUpdate controls if the
- mutateExisting rule will be applied on policy events.
+ generateExisting:
+ description: |-
+ GenerateExisting controls whether to trigger the rule in existing resources
+ If is set to "true" the rule will be triggered and applied to existing matched resources.
type: boolean
- patchStrategicMerge:
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ orphanDownstreamOnPolicyDelete:
description: |-
- PatchStrategicMerge is a strategic merge patch used to modify resources.
- See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
- and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
- x-kubernetes-preserve-unknown-fields: true
- patchesJson6902:
+ OrphanDownstreamOnPolicyDelete controls whether generated resources should be deleted when the rule that generated
+ them is deleted with synchronization enabled. This option is only applicable to generate rules of the data type.
+ See https://kyverno.io/docs/writing-policies/generate/#data-examples.
+ Defaults to "false" if not specified.
+ type: boolean
+ synchronize:
description: |-
- PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
- See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ Synchronize controls if generated resources should be kept in-sync with their source resource.
+ If Synchronize is set to "true" changes to generated resources will be overwritten with resource
+ data from Data or the resource specified in the Clone declaration.
+ Optional. Defaults to "false" if not specified.
+ type: boolean
+ uid:
+ description: UID specifies the resource uid.
type: string
- targets:
- description: Targets defines the target resources to be
- mutated.
- items:
- description: TargetResourceSpec defines targets for mutating
- existing resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
- properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
- items:
- description: RequestData contains the
- HTTP POST data
- properties:
- key:
- description: Key is a unique identifier
- for the data value
- type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
- required:
- - key
- - value
- type: object
- type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- method:
- default: GET
- description: Method is the HTTP request
- type (GET or POST). Defaults to GET.
- enum:
- - GET
- - POST
- type: string
- service:
+ type: object
+ imageExtractors:
+ additionalProperties:
+ items:
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath expression to apply to the image value.
+ This is useful when the extracted image begins with a prefix like 'docker://'.
+ The 'trim_prefix' function may be used to trim the prefix: trim_prefix(@, 'docker://').
+ Note - Image digest mutation may not be used when applying a JMESPAth to an image.
+ type: string
+ key:
+ description: |-
+ Key is an optional name of the field within 'path' that will be used to uniquely identify an image.
+ Note - this field MUST be unique.
+ type: string
+ name:
+ description: |-
+ Name is the entry the image will be available under 'images.' in the context.
+ If this field is not defined, image entries will appear under 'images.custom'.
+ type: string
+ path:
+ description: |-
+ Path is the path to the object containing the image field in a custom resource.
+ It should be slash-separated. Each slash-separated key must be a valid YAML key or a wildcard '*'.
+ Wildcard keys are expanded in case of arrays or objects.
+ type: string
+ value:
+ description: |-
+ Value is an optional name of the field within 'path' that points to the image URI.
+ This is useful when a custom 'key' is also defined.
+ type: string
+ required:
+ - path
+ type: object
+ type: array
+ description: |-
+ ImageExtractors defines a mapping from kinds to ImageExtractorConfigs.
+ This config is only valid for verifyImages rules.
+ type: object
+ match:
+ description: |-
+ MatchResources defines when this policy rule should be applied. The match
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the user name or role.
+ At least one kind is required.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- caBundle:
- description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
+ key:
+ description: key is the label key that
+ the selector applies to.
type: string
- url:
+ operator:
description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
- required:
- - url
- type: object
- urlPath:
- description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
- type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
- properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap
- namespace.
- type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is
- a reference to a cached global context entry.
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context
- entry
- type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
- description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential
- providers required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
+ values:
description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- value:
- description: Value is any arbitrary JSON
- object representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
type: object
+ x-kubernetes-map-type: atomic
type: array
- kind:
- description: Kind specifies resource kind.
- type: string
- name:
- description: Name specifies the resource name.
- type: string
- namespace:
- description: Namespace specifies resource namespace.
- type: string
- preconditions:
- description: |-
- Preconditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
- of conditions (without `any` or `all` statements is supported for backwards compatibility but
- will be deprecated in the next major release.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- x-kubernetes-preserve-unknown-fields: true
- uid:
- description: UID specifies the resource uid.
- type: string
type: object
type: array
- type: object
- name:
- description: Name is a label to identify the rule, It must be
- unique within the policy.
- maxLength: 63
- type: string
- preconditions:
- description: |-
- Preconditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
- of conditions (without `any` or `all` statements is supported for backwards compatibility but
- will be deprecated in the next major release.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- x-kubernetes-preserve-unknown-fields: true
- skipBackgroundRequests:
- default: true
- description: |-
- SkipBackgroundRequests bypasses admission requests that are sent by the background controller.
- The default value is set to "true", it must be set to "false" to apply
- generate and mutateExisting rules to those requests.
- type: boolean
- validate:
- description: Validation is used to validate matching resources.
- properties:
- anyPattern:
- description: |-
- AnyPattern specifies list of validation patterns. At least one of the patterns
- must be satisfied for the validation rule to succeed.
- x-kubernetes-preserve-unknown-fields: true
- assert:
- description: Assert defines a kyverno-json assertion tree.
- type: object
- x-kubernetes-preserve-unknown-fields: true
- cel:
- description: CEL allows validation checks using the Common
- Expression Language (https://kubernetes.io/docs/reference/using-api/cel/).
- properties:
- auditAnnotations:
- description: AuditAnnotations contains CEL expressions
- which are used to produce audit annotations for the
- audit event of the API request.
- items:
- description: AuditAnnotation describes how to produce
- an audit annotation for an API request.
+ any:
+ description: Any allows specifying resources which will
+ be ORed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
properties:
- key:
+ annotations:
+ additionalProperties:
+ type: string
description: |-
- key specifies the audit annotation key. The audit annotation keys of
- a ValidatingAdmissionPolicy must be unique. The key must be a qualified
- name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
-
-
- The key is combined with the resource name of the
- ValidatingAdmissionPolicy to construct an audit annotation key:
- "{ValidatingAdmissionPolicy name}/{key}".
-
-
- If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
- and the same audit annotation key, the annotation key will be identical.
- In this case, the first annotation written with the key will be included
- in the audit event and all subsequent annotations with the same key
- will be discarded.
-
-
- Required.
- type: string
- valueExpression:
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
description: |-
- valueExpression represents the expression which is evaluated by CEL to
- produce an audit annotation value. The expression must evaluate to either
- a string or null value. If the expression evaluates to a string, the
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide role
+ names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used to
+ match a specific action.
+ items:
+ description: AdmissionOperation can have one of the
+ values CREATE, UPDATE, CONNECT, DELETE, which are
+ used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ mutate:
+ description: Mutation is used to modify matching resources.
+ properties:
+ foreach:
+ description: ForEach applies mutation rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
+ items:
+ description: ForEachMutation applies mutation rules to
+ a list of sub-elements by creating a context for each
+ entry in the list and looping over it to apply the specified
+ logic.
+ properties:
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ foreach:
+ description: Foreach declares a nested foreach iterator
+ x-kubernetes-preserve-unknown-fields: true
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
+ type: string
+ order:
+ description: |-
+ Order defines the iteration order on the list.
+ Can be Ascending to iterate from first to last element or Descending to iterate in from last to first element.
+ enum:
+ - Ascending
+ - Descending
+ type: string
+ patchStrategicMerge:
+ description: |-
+ PatchStrategicMerge is a strategic merge patch used to modify resources.
+ See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
+ and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
+ x-kubernetes-preserve-unknown-fields: true
+ patchesJson6902:
+ description: |-
+ PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
+ See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ type: string
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ mutateExistingOnPolicyUpdate:
+ description: MutateExistingOnPolicyUpdate controls if the
+ mutateExisting rule will be applied on policy events.
+ type: boolean
+ patchStrategicMerge:
+ description: |-
+ PatchStrategicMerge is a strategic merge patch used to modify resources.
+ See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
+ and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
+ x-kubernetes-preserve-unknown-fields: true
+ patchesJson6902:
+ description: |-
+ PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
+ See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ type: string
+ targets:
+ description: Targets defines the target resources to be
+ mutated.
+ items:
+ description: TargetResourceSpec defines targets for mutating
+ existing resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
+ description: |-
+ Preconditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
+ of conditions (without `any` or `all` statements is supported for backwards compatibility but
+ will be deprecated in the next major release.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
+ type: object
+ type: array
+ type: object
+ name:
+ description: Name is a label to identify the rule, It must be
+ unique within the policy.
+ maxLength: 63
+ type: string
+ preconditions:
+ description: |-
+ Preconditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
+ of conditions (without `any` or `all` statements is supported for backwards compatibility but
+ will be deprecated in the next major release.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ x-kubernetes-preserve-unknown-fields: true
+ skipBackgroundRequests:
+ default: true
+ description: |-
+ SkipBackgroundRequests bypasses admission requests that are sent by the background controller.
+ The default value is set to "true", it must be set to "false" to apply
+ generate and mutateExisting rules to those requests.
+ type: boolean
+ validate:
+ description: Validation is used to validate matching resources.
+ properties:
+ anyPattern:
+ description: |-
+ AnyPattern specifies list of validation patterns. At least one of the patterns
+ must be satisfied for the validation rule to succeed.
+ x-kubernetes-preserve-unknown-fields: true
+ assert:
+ description: Assert defines a kyverno-json assertion tree.
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ cel:
+ description: CEL allows validation checks using the Common
+ Expression Language (https://kubernetes.io/docs/reference/using-api/cel/).
+ properties:
+ auditAnnotations:
+ description: AuditAnnotations contains CEL expressions
+ which are used to produce audit annotations for the
+ audit event of the API request.
+ items:
+ description: AuditAnnotation describes how to produce
+ an audit annotation for an API request.
+ properties:
+ key:
+ description: |-
+ key specifies the audit annotation key. The audit annotation keys of
+ a ValidatingAdmissionPolicy must be unique. The key must be a qualified
+ name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
+
+
+ The key is combined with the resource name of the
+ ValidatingAdmissionPolicy to construct an audit annotation key:
+ "{ValidatingAdmissionPolicy name}/{key}".
+
+
+ If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
+ and the same audit annotation key, the annotation key will be identical.
+ In this case, the first annotation written with the key will be included
+ in the audit event and all subsequent annotations with the same key
+ will be discarded.
+
+
+ Required.
+ type: string
+ valueExpression:
+ description: |-
+ valueExpression represents the expression which is evaluated by CEL to
+ produce an audit annotation value. The expression must evaluate to either
+ a string or null value. If the expression evaluates to a string, the
audit annotation is included with the string value. If the expression
evaluates to null or empty string the audit annotation will be omitted.
The valueExpression may be no longer than 5kb in length.
@@ -4531,460 +4932,956 @@ spec:
Required.
type: string
- required:
- - expression
- - name
+ required:
+ - expression
+ - name
+ type: object
+ type: array
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the HTTP POST
+ data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request type (GET
+ or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is a reference
+ to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential providers
+ required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object
+ representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
type: array
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
items:
- description: RequestData contains the HTTP POST
- data
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
+ items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
properties:
- key:
- description: Key is a unique identifier
- for the data value
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
required:
- - key
- - value
+ - kind
+ - name
type: object
+ x-kubernetes-map-type: atomic
type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- method:
- default: GET
- description: Method is the HTTP request type (GET
- or POST). Defaults to GET.
- enum:
- - GET
- - POST
- type: string
- service:
- description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
+ type: object
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
properties:
- caBundle:
+ annotations:
+ additionalProperties:
+ type: string
description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
- type: string
- url:
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
type: string
- required:
- - url
- type: object
- urlPath:
- description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
- type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
- properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap namespace.
- type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is a reference
- to a cached global context entry.
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context entry
- type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
+ names:
description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential providers
- required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
type: string
type: array
- secrets:
+ namespaceSelector:
description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
type: string
type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object
- representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
- items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
items:
type: string
type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
type: string
- type: array
- name:
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one of
+ the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list
+ of sub-elements by creating a context for each entry
+ in the list and looping over it to apply the specified
+ logic.
items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
kinds:
description: Kinds is a list of resource kinds.
items:
type: string
type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ selector:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list
@@ -5030,416 +5927,329 @@ spec:
type: object
type: object
x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
- items:
+ type: object
+ context:
+ description: Context defines variables and data
+ sources that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains
+ the HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data
+ value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap
+ reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference
+ is a reference to a cached global context
+ entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials
+ provides credentials that will be
+ used for authentication with registry
properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry
+ allows insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ description: Name is the variable name.
type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one of
- the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ variable:
+ description: Variable defines an arbitrary
+ JMESPath context variable that can be
+ defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
+ value:
+ description: Value is any arbitrary
+ JSON object representable in YAML
+ or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source
- resource used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ description: Namespace specifies resource namespace.
type: string
- type: array
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
+ type: object
+ type: array
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -9151,62 +9961,272 @@ spec:
- google
- github
type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath context
+ variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object representable
+ in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
type: string
- type: array
- type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath context
- variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object representable
- in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
items:
description: ResourceFilter allow users to "AND" or "OR"
between resources
@@ -9311,22 +10331,236 @@ spec:
"UPDATE", "CONNECT", "DELETE"], which are used
to match a specific action.
items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source resource
+ used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
+ items:
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
type: string
type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
selector:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list of
@@ -9373,344 +10607,321 @@ spec:
type: object
x-kubernetes-map-type: atomic
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
items:
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
+ apiCall:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
- items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: key is the label key that
- the selector applies to.
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- operator:
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: array
- selector:
+ any:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
type: object
type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source resource
- used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -13891,138 +15102,547 @@ spec:
map is equivalent to an element of matchExpressions, whose key field is "key", the
operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list
+ of sub-elements by creating a context for each entry
+ in the list and looping over it to apply the specified
+ logic.
+ items:
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ context:
+ description: Context defines variables and data
+ sources that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains
+ the HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data
+ value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap
+ reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference
+ is a reference to a cached global context
+ entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials
+ provides credentials that will be
+ used for authentication with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry
+ allows insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary
+ JMESPath context variable that can be
+ defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary
+ JSON object representable in YAML
+ or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
type: string
- required:
- - kind
- - name
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source
- resource used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
diff --git a/config/crds/kyverno/kyverno.io_policies.yaml b/config/crds/kyverno/kyverno.io_policies.yaml
index a0f27bd5e8bb..680caa298a2e 100644
--- a/config/crds/kyverno/kyverno.io_policies.yaml
+++ b/config/crds/kyverno/kyverno.io_policies.yaml
@@ -1072,135 +1072,46 @@ spec:
At most one of Data or Clone must be specified. If neither are provided, the generated
resource will be created with default data only.
x-kubernetes-preserve-unknown-fields: true
- generateExisting:
- description: |-
- GenerateExisting controls whether to trigger the rule in existing resources
- If is set to "true" the rule will be triggered and applied to existing matched resources.
- type: boolean
- kind:
- description: Kind specifies resource kind.
- type: string
- name:
- description: Name specifies the resource name.
- type: string
- namespace:
- description: Namespace specifies resource namespace.
- type: string
- orphanDownstreamOnPolicyDelete:
- description: |-
- OrphanDownstreamOnPolicyDelete controls whether generated resources should be deleted when the rule that generated
- them is deleted with synchronization enabled. This option is only applicable to generate rules of the data type.
- See https://kyverno.io/docs/writing-policies/generate/#data-examples.
- Defaults to "false" if not specified.
- type: boolean
- synchronize:
- description: |-
- Synchronize controls if generated resources should be kept in-sync with their source resource.
- If Synchronize is set to "true" changes to generated resources will be overwritten with resource
- data from Data or the resource specified in the Clone declaration.
- Optional. Defaults to "false" if not specified.
- type: boolean
- uid:
- description: UID specifies the resource uid.
- type: string
- type: object
- imageExtractors:
- additionalProperties:
- items:
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath expression to apply to the image value.
- This is useful when the extracted image begins with a prefix like 'docker://'.
- The 'trim_prefix' function may be used to trim the prefix: trim_prefix(@, 'docker://').
- Note - Image digest mutation may not be used when applying a JMESPAth to an image.
- type: string
- key:
- description: |-
- Key is an optional name of the field within 'path' that will be used to uniquely identify an image.
- Note - this field MUST be unique.
- type: string
- name:
- description: |-
- Name is the entry the image will be available under 'images.' in the context.
- If this field is not defined, image entries will appear under 'images.custom'.
- type: string
- path:
- description: |-
- Path is the path to the object containing the image field in a custom resource.
- It should be slash-separated. Each slash-separated key must be a valid YAML key or a wildcard '*'.
- Wildcard keys are expanded in case of arrays or objects.
- type: string
- value:
- description: |-
- Value is an optional name of the field within 'path' that points to the image URI.
- This is useful when a custom 'key' is also defined.
- type: string
- required:
- - path
- type: object
- type: array
- description: |-
- ImageExtractors defines a mapping from kinds to ImageExtractorConfigs.
- This config is only valid for verifyImages rules.
- type: object
- match:
- description: |-
- MatchResources defines when this policy rule should be applied. The match
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the user name or role.
- At least one kind is required.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
+ foreach:
+ description: ForEach applies generate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
kinds:
description: Kinds is a list of resource kinds.
items:
type: string
type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ selector:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list of
@@ -1246,1168 +1157,1658 @@ spec:
type: object
type: object
x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ type: object
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
+ caBundle:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- values:
+ url:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
required:
- - key
- - operator
+ - url
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
- items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ urlPath:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ description: Name is the variable name.
type: string
- required:
- - kind
- - name
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide role
- names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ kind:
+ description: Kind specifies resource kind.
type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ name:
+ description: Name specifies the resource name.
type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used to
- match a specific action.
- items:
- description: AdmissionOperation can have one of the
- values CREATE, UPDATE, CONNECT, DELETE, which are
- used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
+ namespace:
+ description: Namespace specifies resource namespace.
type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- mutate:
- description: Mutation is used to modify matching resources.
- properties:
- foreach:
- description: ForEach applies mutation rules to a list of
- sub-elements by creating a context for each entry in the
- list and looping over it to apply the specified logic.
- items:
- description: ForEachMutation applies mutation rules to
- a list of sub-elements by creating a context for each
- entry in the list and looping over it to apply the specified
- logic.
- properties:
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
- items:
- description: RequestData contains the
- HTTP POST data
- properties:
- key:
- description: Key is a unique identifier
- for the data value
- type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
- required:
- - key
- - value
- type: object
- type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
type: string
- method:
- default: GET
- description: Method is the HTTP request
- type (GET or POST). Defaults to GET.
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
enum:
- - GET
- - POST
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- service:
- description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
- properties:
- caBundle:
- description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
- type: string
- url:
- description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
- type: string
- required:
- - url
- type: object
- urlPath:
+ value:
description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap
- namespace.
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is
- a reference to a cached global context entry.
- properties:
- jmesPath:
+ operator:
description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context
- entry
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
- description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential
- providers required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
- type: string
- type: array
- type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON
- object representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: object
- type: array
- foreach:
- description: Foreach declares a nested foreach iterator
- x-kubernetes-preserve-unknown-fields: true
- list:
- description: |-
- List specifies a JMESPath expression that results in one or more elements
- to which the validation logic is applied.
- type: string
- order:
- description: |-
- Order defines the iteration order on the list.
- Can be Ascending to iterate from first to last element or Descending to iterate in from last to first element.
- enum:
- - Ascending
- - Descending
- type: string
- patchStrategicMerge:
- description: |-
- PatchStrategicMerge is a strategic merge patch used to modify resources.
- See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
- and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
- x-kubernetes-preserve-unknown-fields: true
- patchesJson6902:
- description: |-
- PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
- See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
- type: string
- preconditions:
- description: |-
- AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- properties:
- all:
- description: |-
- AllConditions enable variable-based conditional rule execution. This is useful for
- finer control of when an rule is applied. A condition can reference object data
- using JMESPath notation.
- Here, all of the conditions need to pass
- items:
- description: Condition defines variable-based
- conditional criteria for rule execution.
- properties:
- key:
- description: Key is the context entry (using
- JMESPath) for conditional rule evaluation.
- x-kubernetes-preserve-unknown-fields: true
- message:
- description: Message is an optional display
- message
- type: string
- operator:
- description: |-
- Operator is the conditional operation to perform. Valid operators are:
- Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
- GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
- DurationLessThanOrEquals, DurationLessThan
- enum:
- - Equals
- - NotEquals
- - In
- - AnyIn
- - AllIn
- - NotIn
- - AnyNotIn
- - AllNotIn
- - GreaterThanOrEquals
- - GreaterThan
- - LessThanOrEquals
- - LessThan
- - DurationGreaterThanOrEquals
- - DurationGreaterThan
- - DurationLessThanOrEquals
- - DurationLessThan
- type: string
- value:
- description: |-
- Value is the conditional value, or set of values. The values can be fixed set
- or can be variables declared using JMESPath.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: array
- any:
- description: |-
- AnyConditions enable variable-based conditional rule execution. This is useful for
- finer control of when an rule is applied. A condition can reference object data
- using JMESPath notation.
- Here, at least one of the conditions need to pass
- items:
- description: Condition defines variable-based
- conditional criteria for rule execution.
- properties:
- key:
- description: Key is the context entry (using
- JMESPath) for conditional rule evaluation.
- x-kubernetes-preserve-unknown-fields: true
- message:
- description: Message is an optional display
- message
- type: string
- operator:
- description: |-
- Operator is the conditional operation to perform. Valid operators are:
- Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
- GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
- DurationLessThanOrEquals, DurationLessThan
- enum:
- - Equals
- - NotEquals
- - In
- - AnyIn
- - AllIn
- - NotIn
- - AnyNotIn
- - AllNotIn
- - GreaterThanOrEquals
- - GreaterThan
- - LessThanOrEquals
- - LessThan
- - DurationGreaterThanOrEquals
- - DurationGreaterThan
- - DurationLessThanOrEquals
- - DurationLessThan
- type: string
- value:
- description: |-
- Value is the conditional value, or set of values. The values can be fixed set
- or can be variables declared using JMESPath.
- x-kubernetes-preserve-unknown-fields: true
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
type: object
type: array
type: object
x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
type: object
type: array
- mutateExistingOnPolicyUpdate:
- description: MutateExistingOnPolicyUpdate controls if the
- mutateExisting rule will be applied on policy events.
+ generateExisting:
+ description: |-
+ GenerateExisting controls whether to trigger the rule in existing resources
+ If is set to "true" the rule will be triggered and applied to existing matched resources.
type: boolean
- patchStrategicMerge:
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ orphanDownstreamOnPolicyDelete:
description: |-
- PatchStrategicMerge is a strategic merge patch used to modify resources.
- See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
- and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
- x-kubernetes-preserve-unknown-fields: true
- patchesJson6902:
+ OrphanDownstreamOnPolicyDelete controls whether generated resources should be deleted when the rule that generated
+ them is deleted with synchronization enabled. This option is only applicable to generate rules of the data type.
+ See https://kyverno.io/docs/writing-policies/generate/#data-examples.
+ Defaults to "false" if not specified.
+ type: boolean
+ synchronize:
description: |-
- PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
- See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ Synchronize controls if generated resources should be kept in-sync with their source resource.
+ If Synchronize is set to "true" changes to generated resources will be overwritten with resource
+ data from Data or the resource specified in the Clone declaration.
+ Optional. Defaults to "false" if not specified.
+ type: boolean
+ uid:
+ description: UID specifies the resource uid.
type: string
- targets:
- description: Targets defines the target resources to be
- mutated.
- items:
- description: TargetResourceSpec defines targets for mutating
- existing resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
- properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
- items:
- description: RequestData contains the
- HTTP POST data
- properties:
- key:
- description: Key is a unique identifier
- for the data value
- type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
- required:
- - key
- - value
- type: object
- type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- method:
- default: GET
- description: Method is the HTTP request
- type (GET or POST). Defaults to GET.
- enum:
- - GET
- - POST
- type: string
- service:
+ type: object
+ imageExtractors:
+ additionalProperties:
+ items:
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath expression to apply to the image value.
+ This is useful when the extracted image begins with a prefix like 'docker://'.
+ The 'trim_prefix' function may be used to trim the prefix: trim_prefix(@, 'docker://').
+ Note - Image digest mutation may not be used when applying a JMESPAth to an image.
+ type: string
+ key:
+ description: |-
+ Key is an optional name of the field within 'path' that will be used to uniquely identify an image.
+ Note - this field MUST be unique.
+ type: string
+ name:
+ description: |-
+ Name is the entry the image will be available under 'images.' in the context.
+ If this field is not defined, image entries will appear under 'images.custom'.
+ type: string
+ path:
+ description: |-
+ Path is the path to the object containing the image field in a custom resource.
+ It should be slash-separated. Each slash-separated key must be a valid YAML key or a wildcard '*'.
+ Wildcard keys are expanded in case of arrays or objects.
+ type: string
+ value:
+ description: |-
+ Value is an optional name of the field within 'path' that points to the image URI.
+ This is useful when a custom 'key' is also defined.
+ type: string
+ required:
+ - path
+ type: object
+ type: array
+ description: |-
+ ImageExtractors defines a mapping from kinds to ImageExtractorConfigs.
+ This config is only valid for verifyImages rules.
+ type: object
+ match:
+ description: |-
+ MatchResources defines when this policy rule should be applied. The match
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the user name or role.
+ At least one kind is required.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- caBundle:
- description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
+ key:
+ description: key is the label key that
+ the selector applies to.
type: string
- url:
+ operator:
description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
- required:
- - url
- type: object
- urlPath:
- description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
- type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
- properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap
- namespace.
- type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is
- a reference to a cached global context entry.
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context
- entry
- type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
- description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential
- providers required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
+ values:
description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- value:
- description: Value is any arbitrary JSON
- object representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
type: object
+ x-kubernetes-map-type: atomic
type: array
- kind:
- description: Kind specifies resource kind.
- type: string
- name:
- description: Name specifies the resource name.
- type: string
- namespace:
- description: Namespace specifies resource namespace.
- type: string
- preconditions:
- description: |-
- Preconditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
- of conditions (without `any` or `all` statements is supported for backwards compatibility but
- will be deprecated in the next major release.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- x-kubernetes-preserve-unknown-fields: true
- uid:
- description: UID specifies the resource uid.
- type: string
type: object
type: array
- type: object
- name:
- description: Name is a label to identify the rule, It must be
- unique within the policy.
- maxLength: 63
- type: string
- preconditions:
- description: |-
- Preconditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
- of conditions (without `any` or `all` statements is supported for backwards compatibility but
- will be deprecated in the next major release.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- x-kubernetes-preserve-unknown-fields: true
- skipBackgroundRequests:
- default: true
- description: |-
- SkipBackgroundRequests bypasses admission requests that are sent by the background controller.
- The default value is set to "true", it must be set to "false" to apply
- generate and mutateExisting rules to those requests.
- type: boolean
- validate:
- description: Validation is used to validate matching resources.
- properties:
- anyPattern:
- description: |-
- AnyPattern specifies list of validation patterns. At least one of the patterns
- must be satisfied for the validation rule to succeed.
- x-kubernetes-preserve-unknown-fields: true
- assert:
- description: Assert defines a kyverno-json assertion tree.
- type: object
- x-kubernetes-preserve-unknown-fields: true
- cel:
- description: CEL allows validation checks using the Common
- Expression Language (https://kubernetes.io/docs/reference/using-api/cel/).
- properties:
- auditAnnotations:
- description: AuditAnnotations contains CEL expressions
- which are used to produce audit annotations for the
- audit event of the API request.
- items:
- description: AuditAnnotation describes how to produce
- an audit annotation for an API request.
+ any:
+ description: Any allows specifying resources which will
+ be ORed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
properties:
- key:
+ annotations:
+ additionalProperties:
+ type: string
description: |-
- key specifies the audit annotation key. The audit annotation keys of
- a ValidatingAdmissionPolicy must be unique. The key must be a qualified
- name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
-
-
- The key is combined with the resource name of the
- ValidatingAdmissionPolicy to construct an audit annotation key:
- "{ValidatingAdmissionPolicy name}/{key}".
-
-
- If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
- and the same audit annotation key, the annotation key will be identical.
- In this case, the first annotation written with the key will be included
- in the audit event and all subsequent annotations with the same key
- will be discarded.
-
-
- Required.
- type: string
- valueExpression:
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
description: |-
- valueExpression represents the expression which is evaluated by CEL to
- produce an audit annotation value. The expression must evaluate to either
- a string or null value. If the expression evaluates to a string, the
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide role
+ names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used to
+ match a specific action.
+ items:
+ description: AdmissionOperation can have one of the
+ values CREATE, UPDATE, CONNECT, DELETE, which are
+ used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ mutate:
+ description: Mutation is used to modify matching resources.
+ properties:
+ foreach:
+ description: ForEach applies mutation rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
+ items:
+ description: ForEachMutation applies mutation rules to
+ a list of sub-elements by creating a context for each
+ entry in the list and looping over it to apply the specified
+ logic.
+ properties:
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ foreach:
+ description: Foreach declares a nested foreach iterator
+ x-kubernetes-preserve-unknown-fields: true
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
+ type: string
+ order:
+ description: |-
+ Order defines the iteration order on the list.
+ Can be Ascending to iterate from first to last element or Descending to iterate in from last to first element.
+ enum:
+ - Ascending
+ - Descending
+ type: string
+ patchStrategicMerge:
+ description: |-
+ PatchStrategicMerge is a strategic merge patch used to modify resources.
+ See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
+ and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
+ x-kubernetes-preserve-unknown-fields: true
+ patchesJson6902:
+ description: |-
+ PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
+ See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ type: string
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ mutateExistingOnPolicyUpdate:
+ description: MutateExistingOnPolicyUpdate controls if the
+ mutateExisting rule will be applied on policy events.
+ type: boolean
+ patchStrategicMerge:
+ description: |-
+ PatchStrategicMerge is a strategic merge patch used to modify resources.
+ See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
+ and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
+ x-kubernetes-preserve-unknown-fields: true
+ patchesJson6902:
+ description: |-
+ PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
+ See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ type: string
+ targets:
+ description: Targets defines the target resources to be
+ mutated.
+ items:
+ description: TargetResourceSpec defines targets for mutating
+ existing resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
+ description: |-
+ Preconditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
+ of conditions (without `any` or `all` statements is supported for backwards compatibility but
+ will be deprecated in the next major release.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
+ type: object
+ type: array
+ type: object
+ name:
+ description: Name is a label to identify the rule, It must be
+ unique within the policy.
+ maxLength: 63
+ type: string
+ preconditions:
+ description: |-
+ Preconditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
+ of conditions (without `any` or `all` statements is supported for backwards compatibility but
+ will be deprecated in the next major release.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ x-kubernetes-preserve-unknown-fields: true
+ skipBackgroundRequests:
+ default: true
+ description: |-
+ SkipBackgroundRequests bypasses admission requests that are sent by the background controller.
+ The default value is set to "true", it must be set to "false" to apply
+ generate and mutateExisting rules to those requests.
+ type: boolean
+ validate:
+ description: Validation is used to validate matching resources.
+ properties:
+ anyPattern:
+ description: |-
+ AnyPattern specifies list of validation patterns. At least one of the patterns
+ must be satisfied for the validation rule to succeed.
+ x-kubernetes-preserve-unknown-fields: true
+ assert:
+ description: Assert defines a kyverno-json assertion tree.
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ cel:
+ description: CEL allows validation checks using the Common
+ Expression Language (https://kubernetes.io/docs/reference/using-api/cel/).
+ properties:
+ auditAnnotations:
+ description: AuditAnnotations contains CEL expressions
+ which are used to produce audit annotations for the
+ audit event of the API request.
+ items:
+ description: AuditAnnotation describes how to produce
+ an audit annotation for an API request.
+ properties:
+ key:
+ description: |-
+ key specifies the audit annotation key. The audit annotation keys of
+ a ValidatingAdmissionPolicy must be unique. The key must be a qualified
+ name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
+
+
+ The key is combined with the resource name of the
+ ValidatingAdmissionPolicy to construct an audit annotation key:
+ "{ValidatingAdmissionPolicy name}/{key}".
+
+
+ If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
+ and the same audit annotation key, the annotation key will be identical.
+ In this case, the first annotation written with the key will be included
+ in the audit event and all subsequent annotations with the same key
+ will be discarded.
+
+
+ Required.
+ type: string
+ valueExpression:
+ description: |-
+ valueExpression represents the expression which is evaluated by CEL to
+ produce an audit annotation value. The expression must evaluate to either
+ a string or null value. If the expression evaluates to a string, the
audit annotation is included with the string value. If the expression
evaluates to null or empty string the audit annotation will be omitted.
The valueExpression may be no longer than 5kb in length.
@@ -4533,460 +4934,956 @@ spec:
Required.
type: string
- required:
- - expression
- - name
+ required:
+ - expression
+ - name
+ type: object
+ type: array
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the HTTP POST
+ data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request type (GET
+ or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is a reference
+ to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential providers
+ required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object
+ representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
type: array
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
items:
- description: RequestData contains the HTTP POST
- data
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
+ items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
properties:
- key:
- description: Key is a unique identifier
- for the data value
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
required:
- - key
- - value
+ - kind
+ - name
type: object
+ x-kubernetes-map-type: atomic
type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- method:
- default: GET
- description: Method is the HTTP request type (GET
- or POST). Defaults to GET.
- enum:
- - GET
- - POST
- type: string
- service:
- description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
+ type: object
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
properties:
- caBundle:
+ annotations:
+ additionalProperties:
+ type: string
description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
- type: string
- url:
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
type: string
- required:
- - url
- type: object
- urlPath:
- description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
- type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
- properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap namespace.
- type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is a reference
- to a cached global context entry.
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context entry
- type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
+ names:
description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential providers
- required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
type: string
type: array
- secrets:
+ namespaceSelector:
description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
type: string
type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object
- representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
- items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
items:
type: string
type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
type: string
- type: array
- name:
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one of
+ the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list
+ of sub-elements by creating a context for each entry
+ in the list and looping over it to apply the specified
+ logic.
items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
kinds:
description: Kinds is a list of resource kinds.
items:
type: string
type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ selector:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list
@@ -5032,416 +5929,329 @@ spec:
type: object
type: object
x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
- items:
+ type: object
+ context:
+ description: Context defines variables and data
+ sources that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains
+ the HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data
+ value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap
+ reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference
+ is a reference to a cached global context
+ entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials
+ provides credentials that will be
+ used for authentication with registry
properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry
+ allows insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ description: Name is the variable name.
type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one of
- the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ variable:
+ description: Variable defines an arbitrary
+ JMESPath context variable that can be
+ defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
+ value:
+ description: Value is any arbitrary
+ JSON object representable in YAML
+ or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source
- resource used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ description: Namespace specifies resource namespace.
type: string
- type: array
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
+ type: object
+ type: array
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -9154,62 +9964,272 @@ spec:
- google
- github
type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath context
+ variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object representable
+ in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
type: string
- type: array
- type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath context
- variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object representable
- in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
items:
description: ResourceFilter allow users to "AND" or "OR"
between resources
@@ -9314,22 +10334,236 @@ spec:
"UPDATE", "CONNECT", "DELETE"], which are used
to match a specific action.
items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source resource
+ used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
+ items:
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
type: string
type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
selector:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list of
@@ -9376,344 +10610,321 @@ spec:
type: object
x-kubernetes-map-type: atomic
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
items:
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
+ apiCall:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
- items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: key is the label key that
- the selector applies to.
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- operator:
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: array
- selector:
+ any:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
type: object
type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source resource
- used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -13894,138 +15105,547 @@ spec:
map is equivalent to an element of matchExpressions, whose key field is "key", the
operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list
+ of sub-elements by creating a context for each entry
+ in the list and looping over it to apply the specified
+ logic.
+ items:
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ context:
+ description: Context defines variables and data
+ sources that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains
+ the HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data
+ value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap
+ reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference
+ is a reference to a cached global context
+ entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials
+ provides credentials that will be
+ used for authentication with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry
+ allows insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary
+ JMESPath context variable that can be
+ defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary
+ JSON object representable in YAML
+ or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
type: string
- required:
- - kind
- - name
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source
- resource used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
diff --git a/config/install-latest-testing.yaml b/config/install-latest-testing.yaml
index 0c6156ad7c62..a4e4ddc6cee4 100644
--- a/config/install-latest-testing.yaml
+++ b/config/install-latest-testing.yaml
@@ -6269,135 +6269,46 @@ spec:
At most one of Data or Clone must be specified. If neither are provided, the generated
resource will be created with default data only.
x-kubernetes-preserve-unknown-fields: true
- generateExisting:
- description: |-
- GenerateExisting controls whether to trigger the rule in existing resources
- If is set to "true" the rule will be triggered and applied to existing matched resources.
- type: boolean
- kind:
- description: Kind specifies resource kind.
- type: string
- name:
- description: Name specifies the resource name.
- type: string
- namespace:
- description: Namespace specifies resource namespace.
- type: string
- orphanDownstreamOnPolicyDelete:
- description: |-
- OrphanDownstreamOnPolicyDelete controls whether generated resources should be deleted when the rule that generated
- them is deleted with synchronization enabled. This option is only applicable to generate rules of the data type.
- See https://kyverno.io/docs/writing-policies/generate/#data-examples.
- Defaults to "false" if not specified.
- type: boolean
- synchronize:
- description: |-
- Synchronize controls if generated resources should be kept in-sync with their source resource.
- If Synchronize is set to "true" changes to generated resources will be overwritten with resource
- data from Data or the resource specified in the Clone declaration.
- Optional. Defaults to "false" if not specified.
- type: boolean
- uid:
- description: UID specifies the resource uid.
- type: string
- type: object
- imageExtractors:
- additionalProperties:
- items:
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath expression to apply to the image value.
- This is useful when the extracted image begins with a prefix like 'docker://'.
- The 'trim_prefix' function may be used to trim the prefix: trim_prefix(@, 'docker://').
- Note - Image digest mutation may not be used when applying a JMESPAth to an image.
- type: string
- key:
- description: |-
- Key is an optional name of the field within 'path' that will be used to uniquely identify an image.
- Note - this field MUST be unique.
- type: string
- name:
- description: |-
- Name is the entry the image will be available under 'images.' in the context.
- If this field is not defined, image entries will appear under 'images.custom'.
- type: string
- path:
- description: |-
- Path is the path to the object containing the image field in a custom resource.
- It should be slash-separated. Each slash-separated key must be a valid YAML key or a wildcard '*'.
- Wildcard keys are expanded in case of arrays or objects.
- type: string
- value:
- description: |-
- Value is an optional name of the field within 'path' that points to the image URI.
- This is useful when a custom 'key' is also defined.
- type: string
- required:
- - path
- type: object
- type: array
- description: |-
- ImageExtractors defines a mapping from kinds to ImageExtractorConfigs.
- This config is only valid for verifyImages rules.
- type: object
- match:
- description: |-
- MatchResources defines when this policy rule should be applied. The match
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the user name or role.
- At least one kind is required.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
+ foreach:
+ description: ForEach applies generate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
kinds:
description: Kinds is a list of resource kinds.
items:
type: string
type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ selector:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list of
@@ -6443,1493 +6354,1062 @@ spec:
type: object
type: object
x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ type: object
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
+ caBundle:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- values:
+ url:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
required:
- - key
- - operator
+ - url
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
- items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ urlPath:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ description: Name is the variable name.
type: string
- required:
- - kind
- - name
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide role
- names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ kind:
+ description: Kind specifies resource kind.
type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ name:
+ description: Name specifies the resource name.
type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used to
- match a specific action.
- items:
- description: AdmissionOperation can have one of the
- values CREATE, UPDATE, CONNECT, DELETE, which are
- used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
+ namespace:
+ description: Namespace specifies resource namespace.
type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- mutate:
- description: Mutation is used to modify matching resources.
- properties:
- foreach:
- description: ForEach applies mutation rules to a list of
- sub-elements by creating a context for each entry in the
- list and looping over it to apply the specified logic.
- items:
- description: ForEachMutation applies mutation rules to
- a list of sub-elements by creating a context for each
- entry in the list and looping over it to apply the specified
- logic.
- properties:
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
- items:
- description: RequestData contains the
- HTTP POST data
- properties:
- key:
- description: Key is a unique identifier
- for the data value
- type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
- required:
- - key
- - value
- type: object
- type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
type: string
- method:
- default: GET
- description: Method is the HTTP request
- type (GET or POST). Defaults to GET.
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
enum:
- - GET
- - POST
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- service:
- description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
- properties:
- caBundle:
- description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
- type: string
- url:
- description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
- type: string
- required:
- - url
- type: object
- urlPath:
+ value:
description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap
- namespace.
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is
- a reference to a cached global context entry.
- properties:
- jmesPath:
+ operator:
description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context
- entry
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
- description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential
- providers required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
- type: string
- type: array
- type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON
- object representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: object
- type: array
- foreach:
- description: Foreach declares a nested foreach iterator
- x-kubernetes-preserve-unknown-fields: true
- list:
- description: |-
- List specifies a JMESPath expression that results in one or more elements
- to which the validation logic is applied.
- type: string
- order:
- description: |-
- Order defines the iteration order on the list.
- Can be Ascending to iterate from first to last element or Descending to iterate in from last to first element.
- enum:
- - Ascending
- - Descending
- type: string
- patchStrategicMerge:
- description: |-
- PatchStrategicMerge is a strategic merge patch used to modify resources.
- See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
- and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
- x-kubernetes-preserve-unknown-fields: true
- patchesJson6902:
- description: |-
- PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
- See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
- type: string
- preconditions:
- description: |-
- AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- properties:
- all:
- description: |-
- AllConditions enable variable-based conditional rule execution. This is useful for
- finer control of when an rule is applied. A condition can reference object data
- using JMESPath notation.
- Here, all of the conditions need to pass
- items:
- description: Condition defines variable-based
- conditional criteria for rule execution.
- properties:
- key:
- description: Key is the context entry (using
- JMESPath) for conditional rule evaluation.
- x-kubernetes-preserve-unknown-fields: true
- message:
- description: Message is an optional display
- message
- type: string
- operator:
- description: |-
- Operator is the conditional operation to perform. Valid operators are:
- Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
- GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
- DurationLessThanOrEquals, DurationLessThan
- enum:
- - Equals
- - NotEquals
- - In
- - AnyIn
- - AllIn
- - NotIn
- - AnyNotIn
- - AllNotIn
- - GreaterThanOrEquals
- - GreaterThan
- - LessThanOrEquals
- - LessThan
- - DurationGreaterThanOrEquals
- - DurationGreaterThan
- - DurationLessThanOrEquals
- - DurationLessThan
- type: string
- value:
- description: |-
- Value is the conditional value, or set of values. The values can be fixed set
- or can be variables declared using JMESPath.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: array
- any:
- description: |-
- AnyConditions enable variable-based conditional rule execution. This is useful for
- finer control of when an rule is applied. A condition can reference object data
- using JMESPath notation.
- Here, at least one of the conditions need to pass
- items:
- description: Condition defines variable-based
- conditional criteria for rule execution.
- properties:
- key:
- description: Key is the context entry (using
- JMESPath) for conditional rule evaluation.
- x-kubernetes-preserve-unknown-fields: true
- message:
- description: Message is an optional display
- message
- type: string
- operator:
- description: |-
- Operator is the conditional operation to perform. Valid operators are:
- Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
- GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
- DurationLessThanOrEquals, DurationLessThan
- enum:
- - Equals
- - NotEquals
- - In
- - AnyIn
- - AllIn
- - NotIn
- - AnyNotIn
- - AllNotIn
- - GreaterThanOrEquals
- - GreaterThan
- - LessThanOrEquals
- - LessThan
- - DurationGreaterThanOrEquals
- - DurationGreaterThan
- - DurationLessThanOrEquals
- - DurationLessThan
- type: string
- value:
- description: |-
- Value is the conditional value, or set of values. The values can be fixed set
- or can be variables declared using JMESPath.
- x-kubernetes-preserve-unknown-fields: true
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
type: object
type: array
type: object
x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
type: object
type: array
- mutateExistingOnPolicyUpdate:
- description: MutateExistingOnPolicyUpdate controls if the
- mutateExisting rule will be applied on policy events.
+ generateExisting:
+ description: |-
+ GenerateExisting controls whether to trigger the rule in existing resources
+ If is set to "true" the rule will be triggered and applied to existing matched resources.
type: boolean
- patchStrategicMerge:
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ orphanDownstreamOnPolicyDelete:
description: |-
- PatchStrategicMerge is a strategic merge patch used to modify resources.
- See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
- and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
- x-kubernetes-preserve-unknown-fields: true
- patchesJson6902:
+ OrphanDownstreamOnPolicyDelete controls whether generated resources should be deleted when the rule that generated
+ them is deleted with synchronization enabled. This option is only applicable to generate rules of the data type.
+ See https://kyverno.io/docs/writing-policies/generate/#data-examples.
+ Defaults to "false" if not specified.
+ type: boolean
+ synchronize:
description: |-
- PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
- See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ Synchronize controls if generated resources should be kept in-sync with their source resource.
+ If Synchronize is set to "true" changes to generated resources will be overwritten with resource
+ data from Data or the resource specified in the Clone declaration.
+ Optional. Defaults to "false" if not specified.
+ type: boolean
+ uid:
+ description: UID specifies the resource uid.
type: string
- targets:
- description: Targets defines the target resources to be
- mutated.
- items:
- description: TargetResourceSpec defines targets for mutating
- existing resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
- properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
- items:
- description: RequestData contains the
- HTTP POST data
- properties:
- key:
- description: Key is a unique identifier
- for the data value
- type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
- required:
- - key
- - value
- type: object
- type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- method:
- default: GET
- description: Method is the HTTP request
- type (GET or POST). Defaults to GET.
- enum:
- - GET
- - POST
- type: string
- service:
+ type: object
+ imageExtractors:
+ additionalProperties:
+ items:
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath expression to apply to the image value.
+ This is useful when the extracted image begins with a prefix like 'docker://'.
+ The 'trim_prefix' function may be used to trim the prefix: trim_prefix(@, 'docker://').
+ Note - Image digest mutation may not be used when applying a JMESPAth to an image.
+ type: string
+ key:
+ description: |-
+ Key is an optional name of the field within 'path' that will be used to uniquely identify an image.
+ Note - this field MUST be unique.
+ type: string
+ name:
+ description: |-
+ Name is the entry the image will be available under 'images.' in the context.
+ If this field is not defined, image entries will appear under 'images.custom'.
+ type: string
+ path:
+ description: |-
+ Path is the path to the object containing the image field in a custom resource.
+ It should be slash-separated. Each slash-separated key must be a valid YAML key or a wildcard '*'.
+ Wildcard keys are expanded in case of arrays or objects.
+ type: string
+ value:
+ description: |-
+ Value is an optional name of the field within 'path' that points to the image URI.
+ This is useful when a custom 'key' is also defined.
+ type: string
+ required:
+ - path
+ type: object
+ type: array
+ description: |-
+ ImageExtractors defines a mapping from kinds to ImageExtractorConfigs.
+ This config is only valid for verifyImages rules.
+ type: object
+ match:
+ description: |-
+ MatchResources defines when this policy rule should be applied. The match
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the user name or role.
+ At least one kind is required.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- caBundle:
- description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
+ key:
+ description: key is the label key that
+ the selector applies to.
type: string
- url:
+ operator:
description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
- required:
- - url
- type: object
- urlPath:
- description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
- type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
- properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap
- namespace.
- type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is
- a reference to a cached global context entry.
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context
- entry
- type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
- description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential
- providers required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
+ values:
description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
type: string
type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- value:
- description: Value is any arbitrary JSON
- object representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
type: object
+ x-kubernetes-map-type: atomic
type: array
- kind:
- description: Kind specifies resource kind.
- type: string
- name:
- description: Name specifies the resource name.
- type: string
- namespace:
- description: Namespace specifies resource namespace.
- type: string
- preconditions:
- description: |-
- Preconditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
- of conditions (without `any` or `all` statements is supported for backwards compatibility but
- will be deprecated in the next major release.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- x-kubernetes-preserve-unknown-fields: true
- uid:
- description: UID specifies the resource uid.
- type: string
type: object
type: array
- type: object
- name:
- description: Name is a label to identify the rule, It must be
- unique within the policy.
- maxLength: 63
- type: string
- preconditions:
- description: |-
- Preconditions are used to determine if a policy rule should be applied by evaluating a
- set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
- of conditions (without `any` or `all` statements is supported for backwards compatibility but
- will be deprecated in the next major release.
- See: https://kyverno.io/docs/writing-policies/preconditions/
- x-kubernetes-preserve-unknown-fields: true
- skipBackgroundRequests:
- default: true
- description: |-
- SkipBackgroundRequests bypasses admission requests that are sent by the background controller.
- The default value is set to "true", it must be set to "false" to apply
- generate and mutateExisting rules to those requests.
- type: boolean
- validate:
- description: Validation is used to validate matching resources.
- properties:
- anyPattern:
- description: |-
- AnyPattern specifies list of validation patterns. At least one of the patterns
- must be satisfied for the validation rule to succeed.
- x-kubernetes-preserve-unknown-fields: true
- assert:
- description: Assert defines a kyverno-json assertion tree.
- type: object
- x-kubernetes-preserve-unknown-fields: true
- cel:
- description: CEL allows validation checks using the Common
- Expression Language (https://kubernetes.io/docs/reference/using-api/cel/).
- properties:
- auditAnnotations:
- description: AuditAnnotations contains CEL expressions
- which are used to produce audit annotations for the
- audit event of the API request.
- items:
- description: AuditAnnotation describes how to produce
- an audit annotation for an API request.
+ any:
+ description: Any allows specifying resources which will
+ be ORed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
properties:
- key:
+ annotations:
+ additionalProperties:
+ type: string
description: |-
- key specifies the audit annotation key. The audit annotation keys of
- a ValidatingAdmissionPolicy must be unique. The key must be a qualified
- name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
-
-
- The key is combined with the resource name of the
- ValidatingAdmissionPolicy to construct an audit annotation key:
- "{ValidatingAdmissionPolicy name}/{key}".
-
-
- If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
- and the same audit annotation key, the annotation key will be identical.
- In this case, the first annotation written with the key will be included
- in the audit event and all subsequent annotations with the same key
- will be discarded.
-
-
- Required.
- type: string
- valueExpression:
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
description: |-
- valueExpression represents the expression which is evaluated by CEL to
- produce an audit annotation value. The expression must evaluate to either
- a string or null value. If the expression evaluates to a string, the
- audit annotation is included with the string value. If the expression
- evaluates to null or empty string the audit annotation will be omitted.
- The valueExpression may be no longer than 5kb in length.
- If the result of the valueExpression is more than 10kb in length, it
- will be truncated to 10kb.
-
-
- If multiple ValidatingAdmissionPolicyBinding resources match an
- API request, then the valueExpression will be evaluated for
- each binding. All unique values produced by the valueExpressions
- will be joined together in a comma-separated list.
-
-
- Required.
- type: string
- required:
- - key
- - valueExpression
- type: object
- type: array
- expressions:
- description: Expressions is a list of CELExpression
- types.
- items:
- description: Validation specifies the CEL expression
- which is used to apply the validation.
- properties:
- expression:
- description: "Expression represents the expression
- which will be evaluated by CEL.\nref: https://github.com/google/cel-spec\nCEL
- expressions have access to the contents of the
- API request/response, organized into CEL variables
- as well as some other useful variables:\n\n\n-
- 'object' - The object from the incoming request.
- The value is null for DELETE requests.\n- 'oldObject'
- - The existing object. The value is null for
- CREATE requests.\n- 'request' - Attributes of
- the API request([ref](/pkg/apis/admission/types.go#AdmissionRequest)).\n-
- 'params' - Parameter resource referred to by
- the policy binding being evaluated. Only populated
- if the policy has a ParamKind.\n- 'namespaceObject'
- - The namespace object that the incoming object
- belongs to. The value is null for cluster-scoped
- resources.\n- 'variables' - Map of composited
- variables, from its name to its lazily evaluated
- value.\n For example, a variable named 'foo'
- can be accessed as 'variables.foo'.\n- 'authorizer'
- - A CEL Authorizer. May be used to perform authorization
- checks for the principal (user or service account)
- of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n-
- 'authorizer.requestResource' - A CEL ResourceCheck
- constructed from the 'authorizer' and configured
- with the\n request resource.\n\n\nThe `apiVersion`,
- `kind`, `metadata.name` and `metadata.generateName`
- are always accessible from the root of the\nobject.
- No other metadata properties are accessible.\n\n\nOnly
- property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*`
- are accessible.\nAccessible property names are
- escaped according to the following rules when
- accessed in the expression:\n- '__' escapes
- to '__underscores__'\n- '.' escapes to '__dot__'\n-
- '-' escapes to '__dash__'\n- '/' escapes to
- '__slash__'\n- Property names that exactly match
- a CEL RESERVED keyword escape to '__{keyword}__'.
- The keywords are:\n\t \"true\", \"false\",
- \"null\", \"in\", \"as\", \"break\", \"const\",
- \"continue\", \"else\", \"for\", \"function\",
- \"if\",\n\t \"import\", \"let\", \"loop\",
- \"package\", \"namespace\", \"return\".\nExamples:\n
- \ - Expression accessing a property named \"namespace\":
- {\"Expression\": \"object.__namespace__ > 0\"}\n
- \ - Expression accessing a property named \"x-prop\":
- {\"Expression\": \"object.x__dash__prop > 0\"}\n
- \ - Expression accessing a property named \"redact__d\":
- {\"Expression\": \"object.redact__underscores__d
- > 0\"}\n\n\nEquality on arrays with list type
- of 'set' or 'map' ignores element order, i.e.
- [1, 2] == [2, 1].\nConcatenation on arrays with
- x-kubernetes-list-type use the semantics of
- the list type:\n - 'set': `X + Y` performs
- a union where the array positions of all elements
- in `X` are preserved and\n non-intersecting
- elements in `Y` are appended, retaining their
- partial order.\n - 'map': `X + Y` performs
- a merge where the array positions of all keys
- in `X` are preserved but the values\n are
- overwritten by values in `Y` when the key sets
- of `X` and `Y` intersect. Elements in `Y` with\n
- \ non-intersecting keys are appended, retaining
- their partial order.\nRequired."
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
type: string
- message:
+ names:
description: |-
- Message represents the message displayed when validation fails. The message is required if the Expression contains
- line breaks. The message must not contain line breaks.
- If unset, the message is "failed rule: {Rule}".
- e.g. "must be a URL with the host matching spec.host"
- If the Expression contains line breaks. Message is required.
- The message must not contain line breaks.
- If unset, the message is "failed Expression: {Expression}".
- type: string
- messageExpression:
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
description: |-
- messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails.
- Since messageExpression is used as a failure message, it must evaluate to a string.
- If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails.
- If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced
- as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string
- that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and
- the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged.
- messageExpression has access to all the same variables as the `expression` except for 'authorizer' and 'authorizer.requestResource'.
- Example:
- "object.x must be less than max ("+string(params.max)+")"
- type: string
- reason:
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
description: |-
- Reason represents a machine-readable description of why this validation failed.
- If this is the first validation in the list to fail, this reason, as well as the
- corresponding HTTP response code, are used in the
- HTTP response to the client.
- The currently supported reasons are: "Unauthorized", "Forbidden", "Invalid", "RequestEntityTooLarge".
- If not set, StatusReasonInvalid is used in the response to the client.
- type: string
- required:
- - expression
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
type: object
- type: array
- paramKind:
- description: ParamKind is a tuple of Group Kind and
- Version.
- properties:
- apiVersion:
- description: |-
- APIVersion is the API group version the resources belong to.
- In format of "group/version".
- Required.
- type: string
- kind:
- description: |-
- Kind is the API kind the resources belong to.
- Required.
- type: string
- type: object
- x-kubernetes-map-type: atomic
- paramRef:
- description: ParamRef references a parameter resource.
- properties:
- name:
- description: |-
- `name` is the name of the resource being referenced.
-
-
- `name` and `selector` are mutually exclusive properties. If one is set,
- the other must be unset.
- type: string
- namespace:
- description: |-
- namespace is the namespace of the referenced resource. Allows limiting
- the search for params to a specific namespace. Applies to both `name` and
- `selector` fields.
-
-
- A per-namespace parameter may be used by specifying a namespace-scoped
- `paramKind` in the policy and leaving this field empty.
-
-
- - If `paramKind` is cluster-scoped, this field MUST be unset. Setting this
- field results in a configuration error.
-
-
- - If `paramKind` is namespace-scoped, the namespace of the object being
- evaluated for admission will be used when this field is left unset. Take
- care that if this is left empty the binding must not match any cluster-scoped
- resources, which will result in an error.
- type: string
- parameterNotFoundAction:
- description: |-
- `parameterNotFoundAction` controls the behavior of the binding when the resource
- exists, and name or selector is valid, but there are no parameters
- matched by the binding. If the value is set to `Allow`, then no
- matched parameters will be treated as successful validation by the binding.
- If set to `Deny`, then no matched parameters will be subject to the
- `failurePolicy` of the policy.
-
-
- Allowed values are `Allow` or `Deny`
- Default to `Deny`
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
type: string
- selector:
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
description: |-
- selector can be used to match multiple param objects based on their labels.
- Supply selector: {} to match all resources of the ParamKind.
-
-
- If multiple params are found, they are all evaluated with the policy expressions
- and the results are ANDed together.
-
-
- One of `name` or `selector` must be set, but `name` and `selector` are
- mutually exclusive properties. If one is set, the other must be unset.
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
+ apiGroup:
description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
type: object
x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide role
+ names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
type: object
- x-kubernetes-map-type: atomic
- variables:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
description: |-
- Variables contain definitions of variables that can be used in composition of other expressions.
- Each variable is defined as a named CEL expression.
- The variables defined here will be available under `variables` in other expressions of the policy.
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
items:
- description: Variable is the definition of a variable
- that is used for composition.
- properties:
- expression:
- description: |-
- Expression is the expression that will be evaluated as the value of the variable.
- The CEL expression has access to the same identifiers as the CEL expressions in Validation.
- type: string
- name:
- description: |-
- Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables.
- The variable can be accessed in other expressions through `variables`
- For example, if name is "foo", the variable will be available as `variables.foo`
- type: string
- required:
- - expression
- - name
- type: object
+ type: string
type: array
- type: object
- deny:
- description: Deny defines conditions used to pass or fail
- a validation rule.
- properties:
- conditions:
+ namespaceSelector:
description: |-
- Multiple conditions can be declared under an `any` or `all` statement. A direct list
- of conditions (without `any` or `all` statements) is also supported for backwards compatibility
- but will be deprecated in the next major release.
- See: https://kyverno.io/docs/writing-policies/validate/#deny-rules
- x-kubernetes-preserve-unknown-fields: true
- type: object
- foreach:
- description: ForEach applies validate rules to a list of
- sub-elements by creating a context for each entry in the
- list and looping over it to apply the specified logic.
- items:
- description: ForEachValidation applies validate rules
- to a list of sub-elements by creating a context for
- each entry in the list and looping over it to apply
- the specified logic.
- properties:
- anyPattern:
- description: |-
- AnyPattern specifies list of validation patterns. At least one of the patterns
- must be satisfied for the validation rule to succeed.
- x-kubernetes-preserve-unknown-fields: true
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
- properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
- items:
- description: RequestData contains the
- HTTP POST data
- properties:
- key:
- description: Key is a unique identifier
- for the data value
- type: string
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used to
+ match a specific action.
+ items:
+ description: AdmissionOperation can have one of the
+ values CREATE, UPDATE, CONNECT, DELETE, which are
+ used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ mutate:
+ description: Mutation is used to modify matching resources.
+ properties:
+ foreach:
+ description: ForEach applies mutation rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
+ items:
+ description: ForEachMutation applies mutation rules to
+ a list of sub-elements by creating a context for each
+ entry in the list and looping over it to apply the specified
+ logic.
+ properties:
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
value:
description: Value is the data value
x-kubernetes-preserve-unknown-fields: true
@@ -8089,24 +7569,6 @@ spec:
type: object
type: object
type: array
- deny:
- description: Deny defines conditions used to pass
- or fail a validation rule.
- properties:
- conditions:
- description: |-
- Multiple conditions can be declared under an `any` or `all` statement. A direct list
- of conditions (without `any` or `all` statements) is also supported for backwards compatibility
- but will be deprecated in the next major release.
- See: https://kyverno.io/docs/writing-policies/validate/#deny-rules
- x-kubernetes-preserve-unknown-fields: true
- type: object
- elementScope:
- description: |-
- ElementScope specifies whether to use the current list element as the scope for validation. Defaults to "true" if not specified.
- When set to "false", "request.object" is used as the validation scope within the foreach
- block to allow referencing other elements in the subtree.
- type: boolean
foreach:
description: Foreach declares a nested foreach iterator
x-kubernetes-preserve-unknown-fields: true
@@ -8115,10 +7577,25 @@ spec:
List specifies a JMESPath expression that results in one or more elements
to which the validation logic is applied.
type: string
- pattern:
- description: Pattern specifies an overlay-style pattern
- used to check resources.
+ order:
+ description: |-
+ Order defines the iteration order on the list.
+ Can be Ascending to iterate from first to last element or Descending to iterate in from last to first element.
+ enum:
+ - Ascending
+ - Descending
+ type: string
+ patchStrategicMerge:
+ description: |-
+ PatchStrategicMerge is a strategic merge patch used to modify resources.
+ See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
+ and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
x-kubernetes-preserve-unknown-fields: true
+ patchesJson6902:
+ description: |-
+ PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
+ See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ type: string
preconditions:
description: |-
AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
@@ -8227,1230 +7704,2154 @@ spec:
x-kubernetes-preserve-unknown-fields: true
type: object
type: array
- manifests:
- description: Manifest specifies conditions for manifest
- verification
- properties:
- annotationDomain:
- description: AnnotationDomain is custom domain of annotation
- for message and signature. Default is "cosign.sigstore.dev".
- type: string
- attestors:
- description: Attestors specified the required attestors
- (i.e. authorities)
- items:
- properties:
- count:
- description: |-
- Count specifies the required number of entries that must match. If the count is null, all entries must match
- (a logical AND). If the count is 1, at least one entry must match (a logical OR). If the count contains a
- value N, then N must be less than or equal to the size of entries, and at least N entries must match.
- minimum: 1
- type: integer
- entries:
- description: |-
- Entries contains the available attestors. An attestor can be a static key,
- attributes for keyless verification, or a nested attestor declaration.
- items:
+ mutateExistingOnPolicyUpdate:
+ description: MutateExistingOnPolicyUpdate controls if the
+ mutateExisting rule will be applied on policy events.
+ type: boolean
+ patchStrategicMerge:
+ description: |-
+ PatchStrategicMerge is a strategic merge patch used to modify resources.
+ See https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
+ and https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/.
+ x-kubernetes-preserve-unknown-fields: true
+ patchesJson6902:
+ description: |-
+ PatchesJSON6902 is a list of RFC 6902 JSON Patch declarations used to modify resources.
+ See https://tools.ietf.org/html/rfc6902 and https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/.
+ type: string
+ targets:
+ description: Targets defines the target resources to be
+ mutated.
+ items:
+ description: TargetResourceSpec defines targets for mutating
+ existing resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
properties:
- annotations:
- additionalProperties:
- type: string
+ data:
description: |-
- Annotations are used for image verification.
- Every specified key-value pair must exist and match in the verified payload.
- The payload may contain other key-value pairs.
- type: object
- attestor:
- description: Attestor is a nested set of
- Attestor used to specify a more complex
- set of match authorities.
- x-kubernetes-preserve-unknown-fields: true
- certificates:
- description: Certificates specifies one
- or more certificates.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- cert:
- description: Cert is an optional PEM-encoded
- public certificate.
- type: string
- certChain:
- description: CertChain is an optional
- PEM encoded set of certificates used
- to verify.
- type: string
- ctlog:
+ caBundle:
description: |-
- CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
- Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
- properties:
- ignoreSCT:
- description: |-
- IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
- timestamp. Default is false. Set to true if this was opted out during signing.
- type: boolean
- pubkey:
- description: PubKey, if set, is
- used to validate SCTs against
- a custom source.
- type: string
- tsaCertChain:
- description: |-
- TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
- contain the root CA certificate. Optionally may contain intermediate CA certificates, and
- may contain the leaf TSA certificate if not present in the timestamurce.
- type: string
- type: object
- rekor:
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
description: |-
- Rekor provides configuration for the Rekor transparency log service. If an empty object
- is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
- properties:
- ignoreTlog:
- description: IgnoreTlog skips transparency
- log verification.
- type: boolean
- pubkey:
- description: |-
- RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
- If set, this will be used to validate transparency log signatures from a custom Rekor.
- type: string
- url:
- description: URL is the address
- of the transparency log. Defaults
- to the public Rekor log instance
- https://rekor.sigstore.dev.
- type: string
- type: object
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
type: object
- keyless:
+ urlPath:
description: |-
- Keyless is a set of attribute used to verify a Sigstore keyless attestor.
- See https://github.com/sigstore/cosign/blob/main/KEYLESS.md.
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
properties:
- additionalExtensions:
- additionalProperties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
type: string
- description: AdditionalExtensions are
- certificate-extensions used for keyless
- signing.
- type: object
- ctlog:
+ type: array
+ secrets:
description: |-
- CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
- Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
- properties:
- ignoreSCT:
- description: |-
- IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
- timestamp. Default is false. Set to true if this was opted out during signing.
- type: boolean
- pubkey:
- description: PubKey, if set, is
- used to validate SCTs against
- a custom source.
- type: string
- tsaCertChain:
- description: |-
- TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
- contain the root CA certificate. Optionally may contain intermediate CA certificates, and
- may contain the leaf TSA certificate if not present in the timestamurce.
- type: string
- type: object
- issuer:
- description: Issuer is the certificate
- issuer used for keyless signing.
- type: string
- issuerRegExp:
- description: IssuerRegExp is the regular
- expression to match certificate issuer
- used for keyless signing.
- type: string
- rekor:
- description: |-
- Rekor provides configuration for the Rekor transparency log service. If an empty object
- is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
- properties:
- ignoreTlog:
- description: IgnoreTlog skips transparency
- log verification.
- type: boolean
- pubkey:
- description: |-
- RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
- If set, this will be used to validate transparency log signatures from a custom Rekor.
- type: string
- url:
- description: URL is the address
- of the transparency log. Defaults
- to the public Rekor log instance
- https://rekor.sigstore.dev.
- type: string
- type: object
- roots:
- description: |-
- Roots is an optional set of PEM encoded trusted root certificates.
- If not provided, the system roots are used.
- type: string
- subject:
- description: Subject is the verified
- identity used for keyless signing,
- for example the email address.
- type: string
- subjectRegExp:
- description: SubjectRegExp is the regular
- expression to match identity used
- for keyless signing, for example the
- email address.
- type: string
- type: object
- keys:
- description: Keys specifies one or more
- public keys.
- properties:
- ctlog:
- description: |-
- CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
- Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
- properties:
- ignoreSCT:
- description: |-
- IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
- timestamp. Default is false. Set to true if this was opted out during signing.
- type: boolean
- pubkey:
- description: PubKey, if set, is
- used to validate SCTs against
- a custom source.
- type: string
- tsaCertChain:
- description: |-
- TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
- contain the root CA certificate. Optionally may contain intermediate CA certificates, and
- may contain the leaf TSA certificate if not present in the timestamurce.
- type: string
- type: object
- kms:
- description: |-
- KMS provides the URI to the public key stored in a Key Management System. See:
- https://github.com/sigstore/cosign/blob/main/KMS.md
- type: string
- publicKeys:
- description: |-
- Keys is a set of X.509 public keys used to verify image signatures. The keys can be directly
- specified or can be a variable reference to a key specified in a ConfigMap (see
- https://kyverno.io/docs/writing-policies/variables/), or reference a standard Kubernetes Secret
- elsewhere in the cluster by specifying it in the format "k8s:///".
- The named Secret must specify a key `cosign.pub` containing the public key used for
- verification, (see https://github.com/sigstore/cosign/blob/main/KMS.md#kubernetes-secret).
- When multiple keys are specified each key is processed as a separate staticKey entry
- (.attestors[*].entries.keys) within the set of attestors and the count is applied across the keys.
- type: string
- rekor:
- description: |-
- Rekor provides configuration for the Rekor transparency log service. If an empty object
- is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
- properties:
- ignoreTlog:
- description: IgnoreTlog skips transparency
- log verification.
- type: boolean
- pubkey:
- description: |-
- RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
- If set, this will be used to validate transparency log signatures from a custom Rekor.
- type: string
- url:
- description: URL is the address
- of the transparency log. Defaults
- to the public Rekor log instance
- https://rekor.sigstore.dev.
- type: string
- type: object
- secret:
- description: Reference to a Secret resource
- that contains a public key
- properties:
- name:
- description: Name of the secret.
- The provided secret must contain
- a key named cosign.pub.
- type: string
- namespace:
- description: Namespace name where
- the Secret exists.
- type: string
- required:
- - name
- - namespace
- type: object
- signatureAlgorithm:
- default: sha256
- description: Specify signature algorithm
- for public keys. Supported values
- are sha224, sha256, sha384 and sha512.
- type: string
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
type: object
- repository:
+ jmesPath:
description: |-
- Repository is an optional alternate OCI repository to use for signatures and attestations that match this rule.
- If specified Repository will override other OCI image repository locations for this Attestor.
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
type: string
+ required:
+ - reference
type: object
- type: array
- type: object
- type: array
- dryRun:
- description: DryRun configuration
- properties:
- enable:
- type: boolean
- namespace:
- type: string
- type: object
- ignoreFields:
- description: Fields which will be ignored while comparing
- manifests.
- items:
- properties:
- fields:
- items:
+ name:
+ description: Name is the variable name.
type: string
- type: array
- objects:
- items:
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
properties:
- group:
- type: string
- kind:
- type: string
- name:
- type: string
- namespace:
- type: string
- version:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
type: object
- type: array
- type: object
- type: array
- repository:
- description: |-
- Repository is an optional alternate OCI repository to use for resource bundle reference.
- The repository can be overridden per Attestor or Attestation.
- type: string
- type: object
- message:
- description: Message specifies a custom message to be displayed
- on failure.
- type: string
- pattern:
- description: Pattern specifies an overlay-style pattern
- used to check resources.
- x-kubernetes-preserve-unknown-fields: true
- podSecurity:
- description: |-
- PodSecurity applies exemptions for Kubernetes Pod Security admission
- by specifying exclusions for Pod Security Standards controls.
- properties:
- exclude:
- description: Exclude specifies the Pod Security Standard
- controls to be excluded.
- items:
- description: PodSecurityStandard specifies the Pod
- Security Standard controls to be excluded.
- properties:
- controlName:
- description: |-
- ControlName specifies the name of the Pod Security Standard control.
- See: https://kubernetes.io/docs/concepts/security/pod-security-standards/
- enum:
- - HostProcess
- - Host Namespaces
- - Privileged Containers
- - Capabilities
- - HostPath Volumes
- - Host Ports
- - AppArmor
- - SELinux
- - /proc Mount Type
- - Seccomp
- - Sysctls
- - Volume Types
- - Privilege Escalation
- - Running as Non-root
- - Running as Non-root user
- type: string
- images:
- description: |-
- Images selects matching containers and applies the container level PSS.
- Each image is the image name consisting of the registry address, repository, image, and tag.
- Empty list matches no containers, PSS checks are applied at the pod level only.
- Wildcards ('*' and '?') are allowed. See: https://kubernetes.io/docs/concepts/containers/images.
- items:
- type: string
- type: array
- restrictedField:
+ type: object
+ type: array
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
+ description: |-
+ Preconditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
+ of conditions (without `any` or `all` statements is supported for backwards compatibility but
+ will be deprecated in the next major release.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
+ type: object
+ type: array
+ type: object
+ name:
+ description: Name is a label to identify the rule, It must be
+ unique within the policy.
+ maxLength: 63
+ type: string
+ preconditions:
+ description: |-
+ Preconditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements. A direct list
+ of conditions (without `any` or `all` statements is supported for backwards compatibility but
+ will be deprecated in the next major release.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ x-kubernetes-preserve-unknown-fields: true
+ skipBackgroundRequests:
+ default: true
+ description: |-
+ SkipBackgroundRequests bypasses admission requests that are sent by the background controller.
+ The default value is set to "true", it must be set to "false" to apply
+ generate and mutateExisting rules to those requests.
+ type: boolean
+ validate:
+ description: Validation is used to validate matching resources.
+ properties:
+ anyPattern:
+ description: |-
+ AnyPattern specifies list of validation patterns. At least one of the patterns
+ must be satisfied for the validation rule to succeed.
+ x-kubernetes-preserve-unknown-fields: true
+ assert:
+ description: Assert defines a kyverno-json assertion tree.
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ cel:
+ description: CEL allows validation checks using the Common
+ Expression Language (https://kubernetes.io/docs/reference/using-api/cel/).
+ properties:
+ auditAnnotations:
+ description: AuditAnnotations contains CEL expressions
+ which are used to produce audit annotations for the
+ audit event of the API request.
+ items:
+ description: AuditAnnotation describes how to produce
+ an audit annotation for an API request.
+ properties:
+ key:
description: |-
- RestrictedField selects the field for the given Pod Security Standard control.
- When not set, all restricted fields for the control are selected.
+ key specifies the audit annotation key. The audit annotation keys of
+ a ValidatingAdmissionPolicy must be unique. The key must be a qualified
+ name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
+
+
+ The key is combined with the resource name of the
+ ValidatingAdmissionPolicy to construct an audit annotation key:
+ "{ValidatingAdmissionPolicy name}/{key}".
+
+
+ If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
+ and the same audit annotation key, the annotation key will be identical.
+ In this case, the first annotation written with the key will be included
+ in the audit event and all subsequent annotations with the same key
+ will be discarded.
+
+
+ Required.
+ type: string
+ valueExpression:
+ description: |-
+ valueExpression represents the expression which is evaluated by CEL to
+ produce an audit annotation value. The expression must evaluate to either
+ a string or null value. If the expression evaluates to a string, the
+ audit annotation is included with the string value. If the expression
+ evaluates to null or empty string the audit annotation will be omitted.
+ The valueExpression may be no longer than 5kb in length.
+ If the result of the valueExpression is more than 10kb in length, it
+ will be truncated to 10kb.
+
+
+ If multiple ValidatingAdmissionPolicyBinding resources match an
+ API request, then the valueExpression will be evaluated for
+ each binding. All unique values produced by the valueExpressions
+ will be joined together in a comma-separated list.
+
+
+ Required.
type: string
- values:
- description: Values defines the allowed values
- that can be excluded.
- items:
- type: string
- type: array
required:
- - controlName
+ - key
+ - valueExpression
type: object
type: array
- level:
- description: |-
- Level defines the Pod Security Standard level to be applied to workloads.
- Allowed values are privileged, baseline, and restricted.
- enum:
- - privileged
- - baseline
- - restricted
- type: string
- version:
- description: |-
- Version defines the Pod Security Standard versions that Kubernetes supports.
- Allowed values are v1.19, v1.20, v1.21, v1.22, v1.23, v1.24, v1.25, v1.26, v1.27, v1.28, v1.29, latest. Defaults to latest.
- enum:
- - v1.19
- - v1.20
- - v1.21
- - v1.22
- - v1.23
- - v1.24
- - v1.25
- - v1.26
- - v1.27
- - v1.28
- - v1.29
- - latest
- type: string
- type: object
- validationFailureAction:
- description: |-
- ValidationFailureAction defines if a validation policy rule violation should block
- the admission review request (Enforce), or allow (Audit) the admission review request
- and report an error in a policy report. Optional.
- Allowed values are Audit or Enforce.
- enum:
- - Audit
- - Enforce
- type: string
- validationFailureActionOverrides:
- description: |-
- ValidationFailureActionOverrides is a Cluster Policy attribute that specifies ValidationFailureAction
- namespace-wise. It overrides ValidationFailureAction for the specified namespaces.
- items:
- properties:
- action:
- description: ValidationFailureAction defines the policy
- validation failure action
- enum:
- - audit
- - enforce
- - Audit
- - Enforce
- type: string
- namespaceSelector:
- description: |-
- A label selector is a label query over a set of resources. The result of matchLabels and
- matchExpressions are ANDed. An empty label selector matches all objects. A null
- label selector matches no objects.
+ expressions:
+ description: Expressions is a list of CELExpression
+ types.
+ items:
+ description: Validation specifies the CEL expression
+ which is used to apply the validation.
properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- items:
- type: string
- type: array
- type: object
- type: array
- type: object
- verifyImages:
- description: VerifyImages is used to verify image signatures
- and mutate them to add a digest
- items:
- description: |-
- ImageVerification validates that images that match the specified pattern
- are signed with the supplied public key. Once the image is verified it is
- mutated to include the SHA digest retrieved during the registration.
- properties:
- additionalExtensions:
- additionalProperties:
- type: string
- description: Deprecated.
- type: object
- annotations:
- additionalProperties:
- type: string
- description: Deprecated. Use annotations per Attestor
- instead.
- type: object
- attestations:
- description: |-
- Attestations are optional checks for signed in-toto Statements used to verify the image.
- See https://github.com/in-toto/attestation. Kyverno fetches signed attestations from the
- OCI registry and decodes them into a list of Statement declarations.
- items:
- description: |-
- Attestation are checks for signed in-toto Statements that are used to verify the image.
- See https://github.com/in-toto/attestation. Kyverno fetches signed attestations from the
- OCI registry and decodes them into a list of Statements.
+ expression:
+ description: "Expression represents the expression
+ which will be evaluated by CEL.\nref: https://github.com/google/cel-spec\nCEL
+ expressions have access to the contents of the
+ API request/response, organized into CEL variables
+ as well as some other useful variables:\n\n\n-
+ 'object' - The object from the incoming request.
+ The value is null for DELETE requests.\n- 'oldObject'
+ - The existing object. The value is null for
+ CREATE requests.\n- 'request' - Attributes of
+ the API request([ref](/pkg/apis/admission/types.go#AdmissionRequest)).\n-
+ 'params' - Parameter resource referred to by
+ the policy binding being evaluated. Only populated
+ if the policy has a ParamKind.\n- 'namespaceObject'
+ - The namespace object that the incoming object
+ belongs to. The value is null for cluster-scoped
+ resources.\n- 'variables' - Map of composited
+ variables, from its name to its lazily evaluated
+ value.\n For example, a variable named 'foo'
+ can be accessed as 'variables.foo'.\n- 'authorizer'
+ - A CEL Authorizer. May be used to perform authorization
+ checks for the principal (user or service account)
+ of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n-
+ 'authorizer.requestResource' - A CEL ResourceCheck
+ constructed from the 'authorizer' and configured
+ with the\n request resource.\n\n\nThe `apiVersion`,
+ `kind`, `metadata.name` and `metadata.generateName`
+ are always accessible from the root of the\nobject.
+ No other metadata properties are accessible.\n\n\nOnly
+ property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*`
+ are accessible.\nAccessible property names are
+ escaped according to the following rules when
+ accessed in the expression:\n- '__' escapes
+ to '__underscores__'\n- '.' escapes to '__dot__'\n-
+ '-' escapes to '__dash__'\n- '/' escapes to
+ '__slash__'\n- Property names that exactly match
+ a CEL RESERVED keyword escape to '__{keyword}__'.
+ The keywords are:\n\t \"true\", \"false\",
+ \"null\", \"in\", \"as\", \"break\", \"const\",
+ \"continue\", \"else\", \"for\", \"function\",
+ \"if\",\n\t \"import\", \"let\", \"loop\",
+ \"package\", \"namespace\", \"return\".\nExamples:\n
+ \ - Expression accessing a property named \"namespace\":
+ {\"Expression\": \"object.__namespace__ > 0\"}\n
+ \ - Expression accessing a property named \"x-prop\":
+ {\"Expression\": \"object.x__dash__prop > 0\"}\n
+ \ - Expression accessing a property named \"redact__d\":
+ {\"Expression\": \"object.redact__underscores__d
+ > 0\"}\n\n\nEquality on arrays with list type
+ of 'set' or 'map' ignores element order, i.e.
+ [1, 2] == [2, 1].\nConcatenation on arrays with
+ x-kubernetes-list-type use the semantics of
+ the list type:\n - 'set': `X + Y` performs
+ a union where the array positions of all elements
+ in `X` are preserved and\n non-intersecting
+ elements in `Y` are appended, retaining their
+ partial order.\n - 'map': `X + Y` performs
+ a merge where the array positions of all keys
+ in `X` are preserved but the values\n are
+ overwritten by values in `Y` when the key sets
+ of `X` and `Y` intersect. Elements in `Y` with\n
+ \ non-intersecting keys are appended, retaining
+ their partial order.\nRequired."
+ type: string
+ message:
+ description: |-
+ Message represents the message displayed when validation fails. The message is required if the Expression contains
+ line breaks. The message must not contain line breaks.
+ If unset, the message is "failed rule: {Rule}".
+ e.g. "must be a URL with the host matching spec.host"
+ If the Expression contains line breaks. Message is required.
+ The message must not contain line breaks.
+ If unset, the message is "failed Expression: {Expression}".
+ type: string
+ messageExpression:
+ description: |-
+ messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails.
+ Since messageExpression is used as a failure message, it must evaluate to a string.
+ If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails.
+ If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced
+ as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string
+ that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and
+ the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged.
+ messageExpression has access to all the same variables as the `expression` except for 'authorizer' and 'authorizer.requestResource'.
+ Example:
+ "object.x must be less than max ("+string(params.max)+")"
+ type: string
+ reason:
+ description: |-
+ Reason represents a machine-readable description of why this validation failed.
+ If this is the first validation in the list to fail, this reason, as well as the
+ corresponding HTTP response code, are used in the
+ HTTP response to the client.
+ The currently supported reasons are: "Unauthorized", "Forbidden", "Invalid", "RequestEntityTooLarge".
+ If not set, StatusReasonInvalid is used in the response to the client.
+ type: string
+ required:
+ - expression
+ type: object
+ type: array
+ paramKind:
+ description: ParamKind is a tuple of Group Kind and
+ Version.
properties:
- attestors:
- description: Attestors specify the required attestors
- (i.e. authorities).
- items:
- properties:
- count:
- description: |-
- Count specifies the required number of entries that must match. If the count is null, all entries must match
- (a logical AND). If the count is 1, at least one entry must match (a logical OR). If the count contains a
- value N, then N must be less than or equal to the size of entries, and at least N entries must match.
- minimum: 1
- type: integer
- entries:
+ apiVersion:
+ description: |-
+ APIVersion is the API group version the resources belong to.
+ In format of "group/version".
+ Required.
+ type: string
+ kind:
+ description: |-
+ Kind is the API kind the resources belong to.
+ Required.
+ type: string
+ type: object
+ x-kubernetes-map-type: atomic
+ paramRef:
+ description: ParamRef references a parameter resource.
+ properties:
+ name:
+ description: |-
+ `name` is the name of the resource being referenced.
+
+
+ `name` and `selector` are mutually exclusive properties. If one is set,
+ the other must be unset.
+ type: string
+ namespace:
+ description: |-
+ namespace is the namespace of the referenced resource. Allows limiting
+ the search for params to a specific namespace. Applies to both `name` and
+ `selector` fields.
+
+
+ A per-namespace parameter may be used by specifying a namespace-scoped
+ `paramKind` in the policy and leaving this field empty.
+
+
+ - If `paramKind` is cluster-scoped, this field MUST be unset. Setting this
+ field results in a configuration error.
+
+
+ - If `paramKind` is namespace-scoped, the namespace of the object being
+ evaluated for admission will be used when this field is left unset. Take
+ care that if this is left empty the binding must not match any cluster-scoped
+ resources, which will result in an error.
+ type: string
+ parameterNotFoundAction:
+ description: |-
+ `parameterNotFoundAction` controls the behavior of the binding when the resource
+ exists, and name or selector is valid, but there are no parameters
+ matched by the binding. If the value is set to `Allow`, then no
+ matched parameters will be treated as successful validation by the binding.
+ If set to `Deny`, then no matched parameters will be subject to the
+ `failurePolicy` of the policy.
+
+
+ Allowed values are `Allow` or `Deny`
+ Default to `Deny`
+ type: string
+ selector:
+ description: |-
+ selector can be used to match multiple param objects based on their labels.
+ Supply selector: {} to match all resources of the ParamKind.
+
+
+ If multiple params are found, they are all evaluated with the policy expressions
+ and the results are ANDed together.
+
+
+ One of `name` or `selector` must be set, but `name` and `selector` are
+ mutually exclusive properties. If one is set, the other must be unset.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Entries contains the available attestors. An attestor can be a static key,
- attributes for keyless verification, or a nested attestor declaration.
- items:
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations are used for image verification.
- Every specified key-value pair must exist and match in the verified payload.
- The payload may contain other key-value pairs.
- type: object
- attestor:
- description: Attestor is a nested set
- of Attestor used to specify a more
- complex set of match authorities.
- x-kubernetes-preserve-unknown-fields: true
- certificates:
- description: Certificates specifies
- one or more certificates.
- properties:
- cert:
- description: Cert is an optional
- PEM-encoded public certificate.
- type: string
- certChain:
- description: CertChain is an optional
- PEM encoded set of certificates
- used to verify.
- type: string
- ctlog:
- description: |-
- CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
- Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
- properties:
- ignoreSCT:
- description: |-
- IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
- timestamp. Default is false. Set to true if this was opted out during signing.
- type: boolean
- pubkey:
- description: PubKey, if set,
- is used to validate SCTs against
- a custom source.
- type: string
- tsaCertChain:
- description: |-
- TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
- contain the root CA certificate. Optionally may contain intermediate CA certificates, and
- may contain the leaf TSA certificate if not present in the timestamurce.
- type: string
- type: object
- rekor:
- description: |-
- Rekor provides configuration for the Rekor transparency log service. If an empty object
- is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
- properties:
- ignoreTlog:
- description: IgnoreTlog skips
- transparency log verification.
- type: boolean
- pubkey:
- description: |-
- RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
- If set, this will be used to validate transparency log signatures from a custom Rekor.
- type: string
- url:
- description: URL is the address
- of the transparency log. Defaults
- to the public Rekor log instance
- https://rekor.sigstore.dev.
- type: string
- type: object
- type: object
- keyless:
- description: |-
- Keyless is a set of attribute used to verify a Sigstore keyless attestor.
- See https://github.com/sigstore/cosign/blob/main/KEYLESS.md.
- properties:
- additionalExtensions:
- additionalProperties:
- type: string
- description: AdditionalExtensions
- are certificate-extensions used
- for keyless signing.
- type: object
- ctlog:
- description: |-
- CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
- Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
- properties:
- ignoreSCT:
- description: |-
- IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
- timestamp. Default is false. Set to true if this was opted out during signing.
- type: boolean
- pubkey:
- description: PubKey, if set,
- is used to validate SCTs against
- a custom source.
- type: string
- tsaCertChain:
- description: |-
- TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
- contain the root CA certificate. Optionally may contain intermediate CA certificates, and
- may contain the leaf TSA certificate if not present in the timestamurce.
- type: string
- type: object
- issuer:
- description: Issuer is the certificate
- issuer used for keyless signing.
- type: string
- issuerRegExp:
- description: IssuerRegExp is the
- regular expression to match certificate
- issuer used for keyless signing.
- type: string
- rekor:
- description: |-
- Rekor provides configuration for the Rekor transparency log service. If an empty object
- is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
- properties:
- ignoreTlog:
- description: IgnoreTlog skips
- transparency log verification.
- type: boolean
- pubkey:
- description: |-
- RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
- If set, this will be used to validate transparency log signatures from a custom Rekor.
- type: string
- url:
- description: URL is the address
- of the transparency log. Defaults
- to the public Rekor log instance
- https://rekor.sigstore.dev.
- type: string
- type: object
- roots:
- description: |-
- Roots is an optional set of PEM encoded trusted root certificates.
- If not provided, the system roots are used.
- type: string
- subject:
- description: Subject is the verified
- identity used for keyless signing,
- for example the email address.
- type: string
- subjectRegExp:
- description: SubjectRegExp is the
- regular expression to match identity
- used for keyless signing, for
- example the email address.
- type: string
- type: object
- keys:
- description: Keys specifies one or more
- public keys.
- properties:
- ctlog:
- description: |-
- CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
- Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
- properties:
- ignoreSCT:
- description: |-
- IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
- timestamp. Default is false. Set to true if this was opted out during signing.
- type: boolean
- pubkey:
- description: PubKey, if set,
- is used to validate SCTs against
- a custom source.
- type: string
- tsaCertChain:
- description: |-
- TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
- contain the root CA certificate. Optionally may contain intermediate CA certificates, and
- may contain the leaf TSA certificate if not present in the timestamurce.
- type: string
- type: object
- kms:
- description: |-
- KMS provides the URI to the public key stored in a Key Management System. See:
- https://github.com/sigstore/cosign/blob/main/KMS.md
- type: string
- publicKeys:
- description: |-
- Keys is a set of X.509 public keys used to verify image signatures. The keys can be directly
- specified or can be a variable reference to a key specified in a ConfigMap (see
- https://kyverno.io/docs/writing-policies/variables/), or reference a standard Kubernetes Secret
- elsewhere in the cluster by specifying it in the format "k8s:///".
- The named Secret must specify a key `cosign.pub` containing the public key used for
- verification, (see https://github.com/sigstore/cosign/blob/main/KMS.md#kubernetes-secret).
- When multiple keys are specified each key is processed as a separate staticKey entry
- (.attestors[*].entries.keys) within the set of attestors and the count is applied across the keys.
- type: string
- rekor:
- description: |-
- Rekor provides configuration for the Rekor transparency log service. If an empty object
- is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
- properties:
- ignoreTlog:
- description: IgnoreTlog skips
- transparency log verification.
- type: boolean
- pubkey:
- description: |-
- RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
- If set, this will be used to validate transparency log signatures from a custom Rekor.
- type: string
- url:
- description: URL is the address
- of the transparency log. Defaults
- to the public Rekor log instance
- https://rekor.sigstore.dev.
- type: string
- type: object
- secret:
- description: Reference to a Secret
- resource that contains a public
- key
- properties:
- name:
- description: Name of the secret.
- The provided secret must contain
- a key named cosign.pub.
- type: string
- namespace:
- description: Namespace name
- where the Secret exists.
- type: string
- required:
- - name
- - namespace
- type: object
- signatureAlgorithm:
- default: sha256
- description: Specify signature algorithm
- for public keys. Supported values
- are sha224, sha256, sha384 and
- sha512.
- type: string
- type: object
- repository:
- description: |-
- Repository is an optional alternate OCI repository to use for signatures and attestations that match this rule.
- If specified Repository will override other OCI image repository locations for this Attestor.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
type: string
- type: object
- type: array
- type: object
- type: array
- conditions:
- description: |-
- Conditions are used to verify attributes within a Predicate. If no Conditions are specified
- the attestation check is satisfied as long there are predicates that match the predicate type.
- items:
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ x-kubernetes-map-type: atomic
+ variables:
+ description: |-
+ Variables contain definitions of variables that can be used in composition of other expressions.
+ Each variable is defined as a named CEL expression.
+ The variables defined here will be available under `variables` in other expressions of the policy.
+ items:
+ description: Variable is the definition of a variable
+ that is used for composition.
+ properties:
+ expression:
description: |-
- AnyAllConditions consists of conditions wrapped denoting a logical criteria to be fulfilled.
- AnyConditions get fulfilled when at least one of its sub-conditions passes.
- AllConditions get fulfilled only when all of its sub-conditions pass.
- properties:
- all:
- description: |-
- AllConditions enable variable-based conditional rule execution. This is useful for
- finer control of when an rule is applied. A condition can reference object data
- using JMESPath notation.
- Here, all of the conditions need to pass
- items:
- description: Condition defines variable-based
- conditional criteria for rule execution.
+ Expression is the expression that will be evaluated as the value of the variable.
+ The CEL expression has access to the same identifiers as the CEL expressions in Validation.
+ type: string
+ name:
+ description: |-
+ Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables.
+ The variable can be accessed in other expressions through `variables`
+ For example, if name is "foo", the variable will be available as `variables.foo`
+ type: string
+ required:
+ - expression
+ - name
+ type: object
+ type: array
+ type: object
+ deny:
+ description: Deny defines conditions used to pass or fail
+ a validation rule.
+ properties:
+ conditions:
+ description: |-
+ Multiple conditions can be declared under an `any` or `all` statement. A direct list
+ of conditions (without `any` or `all` statements) is also supported for backwards compatibility
+ but will be deprecated in the next major release.
+ See: https://kyverno.io/docs/writing-policies/validate/#deny-rules
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ foreach:
+ description: ForEach applies validate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
+ items:
+ description: ForEachValidation applies validate rules
+ to a list of sub-elements by creating a context for
+ each entry in the list and looping over it to apply
+ the specified logic.
+ properties:
+ anyPattern:
+ description: |-
+ AnyPattern specifies list of validation patterns. At least one of the patterns
+ must be satisfied for the validation rule to succeed.
+ x-kubernetes-preserve-unknown-fields: true
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: Key is the context entry
- (using JMESPath) for conditional rule
- evaluation.
- x-kubernetes-preserve-unknown-fields: true
- message:
- description: Message is an optional
- display message
- type: string
- operator:
- description: |-
- Operator is the conditional operation to perform. Valid operators are:
- Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
- GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
- DurationLessThanOrEquals, DurationLessThan
- enum:
- - Equals
- - NotEquals
- - In
- - AnyIn
- - AllIn
- - NotIn
- - AnyNotIn
- - AllNotIn
- - GreaterThanOrEquals
- - GreaterThan
- - LessThanOrEquals
- - LessThan
- - DurationGreaterThanOrEquals
- - DurationGreaterThan
- - DurationLessThanOrEquals
- - DurationLessThan
- type: string
- value:
+ caBundle:
description: |-
- Value is the conditional value, or set of values. The values can be fixed set
- or can be variables declared using JMESPath.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: array
- any:
- description: |-
- AnyConditions enable variable-based conditional rule execution. This is useful for
- finer control of when an rule is applied. A condition can reference object data
- using JMESPath notation.
- Here, at least one of the conditions need to pass
- items:
- description: Condition defines variable-based
- conditional criteria for rule execution.
- properties:
- key:
- description: Key is the context entry
- (using JMESPath) for conditional rule
- evaluation.
- x-kubernetes-preserve-unknown-fields: true
- message:
- description: Message is an optional
- display message
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- operator:
+ url:
description: |-
- Operator is the conditional operation to perform. Valid operators are:
- Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
- GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
- DurationLessThanOrEquals, DurationLessThan
- enum:
- - Equals
- - NotEquals
- - In
- - AnyIn
- - AllIn
- - NotIn
- - AnyNotIn
- - AllNotIn
- - GreaterThanOrEquals
- - GreaterThan
- - LessThanOrEquals
- - LessThan
- - DurationGreaterThanOrEquals
- - DurationGreaterThan
- - DurationLessThanOrEquals
- - DurationLessThan
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
type: string
- value:
- description: |-
- Value is the conditional value, or set of values. The values can be fixed set
- or can be variables declared using JMESPath.
- x-kubernetes-preserve-unknown-fields: true
+ required:
+ - url
type: object
- type: array
- type: object
- type: array
- predicateType:
- description: Deprecated in favour of 'Type', to
- be removed soon
- type: string
- type:
- description: Type defines the type of attestation
- contained within the Statement.
- type: string
- type: object
- type: array
- attestors:
- description: Attestors specified the required attestors
- (i.e. authorities)
- items:
- properties:
- count:
- description: |-
- Count specifies the required number of entries that must match. If the count is null, all entries must match
- (a logical AND). If the count is 1, at least one entry must match (a logical OR). If the count contains a
- value N, then N must be less than or equal to the size of entries, and at least N entries must match.
- minimum: 1
- type: integer
- entries:
- description: |-
- Entries contains the available attestors. An attestor can be a static key,
- attributes for keyless verification, or a nested attestor declaration.
- items:
- properties:
- annotations:
- additionalProperties:
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
type: string
- description: |-
- Annotations are used for image verification.
- Every specified key-value pair must exist and match in the verified payload.
- The payload may contain other key-value pairs.
- type: object
- attestor:
- description: Attestor is a nested set of Attestor
- used to specify a more complex set of match
- authorities.
- x-kubernetes-preserve-unknown-fields: true
- certificates:
- description: Certificates specifies one or
- more certificates.
- properties:
- cert:
- description: Cert is an optional PEM-encoded
- public certificate.
- type: string
- certChain:
- description: CertChain is an optional
- PEM encoded set of certificates used
- to verify.
- type: string
- ctlog:
- description: |-
- CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
- Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
- properties:
- ignoreSCT:
- description: |-
- IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
- timestamp. Default is false. Set to true if this was opted out during signing.
- type: boolean
- pubkey:
- description: PubKey, if set, is used
- to validate SCTs against a custom
- source.
- type: string
- tsaCertChain:
- description: |-
- TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
- contain the root CA certificate. Optionally may contain intermediate CA certificates, and
- may contain the leaf TSA certificate if not present in the timestamurce.
- type: string
- type: object
- rekor:
- description: |-
- Rekor provides configuration for the Rekor transparency log service. If an empty object
- is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
- properties:
- ignoreTlog:
- description: IgnoreTlog skips transparency
- log verification.
- type: boolean
- pubkey:
- description: |-
- RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
- If set, this will be used to validate transparency log signatures from a custom Rekor.
- type: string
- url:
- description: URL is the address of
- the transparency log. Defaults to
- the public Rekor log instance https://rekor.sigstore.dev.
- type: string
- type: object
- type: object
- keyless:
- description: |-
- Keyless is a set of attribute used to verify a Sigstore keyless attestor.
- See https://github.com/sigstore/cosign/blob/main/KEYLESS.md.
- properties:
- additionalExtensions:
- additionalProperties:
- type: string
- description: AdditionalExtensions are
- certificate-extensions used for keyless
- signing.
- type: object
- ctlog:
- description: |-
- CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
- Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
- properties:
- ignoreSCT:
- description: |-
- IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
- timestamp. Default is false. Set to true if this was opted out during signing.
- type: boolean
- pubkey:
- description: PubKey, if set, is used
- to validate SCTs against a custom
- source.
- type: string
- tsaCertChain:
- description: |-
- TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
- contain the root CA certificate. Optionally may contain intermediate CA certificates, and
- may contain the leaf TSA certificate if not present in the timestamurce.
- type: string
- type: object
- issuer:
- description: Issuer is the certificate
- issuer used for keyless signing.
- type: string
- issuerRegExp:
- description: IssuerRegExp is the regular
- expression to match certificate issuer
- used for keyless signing.
- type: string
- rekor:
- description: |-
- Rekor provides configuration for the Rekor transparency log service. If an empty object
- is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
- properties:
- ignoreTlog:
- description: IgnoreTlog skips transparency
- log verification.
- type: boolean
- pubkey:
- description: |-
- RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
- If set, this will be used to validate transparency log signatures from a custom Rekor.
- type: string
- url:
- description: URL is the address of
- the transparency log. Defaults to
- the public Rekor log instance https://rekor.sigstore.dev.
- type: string
- type: object
- roots:
- description: |-
- Roots is an optional set of PEM encoded trusted root certificates.
- If not provided, the system roots are used.
- type: string
- subject:
- description: Subject is the verified identity
- used for keyless signing, for example
- the email address.
- type: string
- subjectRegExp:
- description: SubjectRegExp is the regular
- expression to match identity used for
- keyless signing, for example the email
- address.
- type: string
- type: object
- keys:
- description: Keys specifies one or more public
- keys.
- properties:
- ctlog:
- description: |-
- CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
- Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
- properties:
- ignoreSCT:
- description: |-
- IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
- timestamp. Default is false. Set to true if this was opted out during signing.
- type: boolean
- pubkey:
- description: PubKey, if set, is used
- to validate SCTs against a custom
- source.
- type: string
- tsaCertChain:
- description: |-
- TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
- contain the root CA certificate. Optionally may contain intermediate CA certificates, and
- may contain the leaf TSA certificate if not present in the timestamurce.
- type: string
- type: object
- kms:
- description: |-
- KMS provides the URI to the public key stored in a Key Management System. See:
- https://github.com/sigstore/cosign/blob/main/KMS.md
- type: string
- publicKeys:
- description: |-
- Keys is a set of X.509 public keys used to verify image signatures. The keys can be directly
- specified or can be a variable reference to a key specified in a ConfigMap (see
- https://kyverno.io/docs/writing-policies/variables/), or reference a standard Kubernetes Secret
- elsewhere in the cluster by specifying it in the format "k8s:///".
- The named Secret must specify a key `cosign.pub` containing the public key used for
- verification, (see https://github.com/sigstore/cosign/blob/main/KMS.md#kubernetes-secret).
- When multiple keys are specified each key is processed as a separate staticKey entry
- (.attestors[*].entries.keys) within the set of attestors and the count is applied across the keys.
- type: string
- rekor:
- description: |-
- Rekor provides configuration for the Rekor transparency log service. If an empty object
- is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
- properties:
- ignoreTlog:
- description: IgnoreTlog skips transparency
- log verification.
- type: boolean
- pubkey:
- description: |-
- RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
- If set, this will be used to validate transparency log signatures from a custom Rekor.
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
type: string
- url:
- description: URL is the address of
- the transparency log. Defaults to
- the public Rekor log instance https://rekor.sigstore.dev.
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
type: string
- type: object
- secret:
- description: Reference to a Secret resource
- that contains a public key
- properties:
- name:
- description: Name of the secret. The
- provided secret must contain a key
- named cosign.pub.
- type: string
- namespace:
- description: Namespace name where
- the Secret exists.
- type: string
- required:
- - name
- - namespace
- type: object
- signatureAlgorithm:
- default: sha256
- description: Specify signature algorithm
- for public keys. Supported values are
- sha224, sha256, sha384 and sha512.
- type: string
- type: object
- repository:
- description: |-
- Repository is an optional alternate OCI repository to use for signatures and attestations that match this rule.
- If specified Repository will override other OCI image repository locations for this Attestor.
- type: string
- type: object
- type: array
- type: object
- type: array
- cosignOCI11:
- description: |-
- CosignOCI11 enables the experimental OCI 1.1 behaviour in cosign image verification.
- Defaults to false.
- type: boolean
- image:
- description: Deprecated. Use ImageReferences instead.
- type: string
- imageReferences:
- description: |-
- ImageReferences is a list of matching image reference patterns. At least one pattern in the
- list must match the image for the rule to apply. Each image reference consists of a registry
- address (defaults to docker.io), repository, image, and tag (defaults to latest).
- Wildcards ('*' and '?') are allowed. See: https://kubernetes.io/docs/concepts/containers/images.
- items:
- type: string
- type: array
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides credentials
- that will be used for authentication with registry.
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows insecure
- access to a registry.
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ deny:
+ description: Deny defines conditions used to pass
+ or fail a validation rule.
+ properties:
+ conditions:
+ description: |-
+ Multiple conditions can be declared under an `any` or `all` statement. A direct list
+ of conditions (without `any` or `all` statements) is also supported for backwards compatibility
+ but will be deprecated in the next major release.
+ See: https://kyverno.io/docs/writing-policies/validate/#deny-rules
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ elementScope:
+ description: |-
+ ElementScope specifies whether to use the current list element as the scope for validation. Defaults to "true" if not specified.
+ When set to "false", "request.object" is used as the validation scope within the foreach
+ block to allow referencing other elements in the subtree.
type: boolean
- providers:
+ foreach:
+ description: Foreach declares a nested foreach iterator
+ x-kubernetes-preserve-unknown-fields: true
+ list:
description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential providers required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
+ type: string
+ pattern:
+ description: Pattern specifies an overlay-style pattern
+ used to check resources.
+ x-kubernetes-preserve-unknown-fields: true
+ preconditions:
description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
- type: string
- type: array
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
type: object
- issuer:
- description: Deprecated. Use KeylessAttestor instead.
- type: string
- key:
- description: Deprecated. Use StaticKeyAttestor instead.
- type: string
+ type: array
+ manifests:
+ description: Manifest specifies conditions for manifest
+ verification
+ properties:
+ annotationDomain:
+ description: AnnotationDomain is custom domain of annotation
+ for message and signature. Default is "cosign.sigstore.dev".
+ type: string
+ attestors:
+ description: Attestors specified the required attestors
+ (i.e. authorities)
+ items:
+ properties:
+ count:
+ description: |-
+ Count specifies the required number of entries that must match. If the count is null, all entries must match
+ (a logical AND). If the count is 1, at least one entry must match (a logical OR). If the count contains a
+ value N, then N must be less than or equal to the size of entries, and at least N entries must match.
+ minimum: 1
+ type: integer
+ entries:
+ description: |-
+ Entries contains the available attestors. An attestor can be a static key,
+ attributes for keyless verification, or a nested attestor declaration.
+ items:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations are used for image verification.
+ Every specified key-value pair must exist and match in the verified payload.
+ The payload may contain other key-value pairs.
+ type: object
+ attestor:
+ description: Attestor is a nested set of
+ Attestor used to specify a more complex
+ set of match authorities.
+ x-kubernetes-preserve-unknown-fields: true
+ certificates:
+ description: Certificates specifies one
+ or more certificates.
+ properties:
+ cert:
+ description: Cert is an optional PEM-encoded
+ public certificate.
+ type: string
+ certChain:
+ description: CertChain is an optional
+ PEM encoded set of certificates used
+ to verify.
+ type: string
+ ctlog:
+ description: |-
+ CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
+ Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
+ properties:
+ ignoreSCT:
+ description: |-
+ IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
+ timestamp. Default is false. Set to true if this was opted out during signing.
+ type: boolean
+ pubkey:
+ description: PubKey, if set, is
+ used to validate SCTs against
+ a custom source.
+ type: string
+ tsaCertChain:
+ description: |-
+ TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
+ contain the root CA certificate. Optionally may contain intermediate CA certificates, and
+ may contain the leaf TSA certificate if not present in the timestamurce.
+ type: string
+ type: object
+ rekor:
+ description: |-
+ Rekor provides configuration for the Rekor transparency log service. If an empty object
+ is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
+ properties:
+ ignoreTlog:
+ description: IgnoreTlog skips transparency
+ log verification.
+ type: boolean
+ pubkey:
+ description: |-
+ RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
+ If set, this will be used to validate transparency log signatures from a custom Rekor.
+ type: string
+ url:
+ description: URL is the address
+ of the transparency log. Defaults
+ to the public Rekor log instance
+ https://rekor.sigstore.dev.
+ type: string
+ type: object
+ type: object
+ keyless:
+ description: |-
+ Keyless is a set of attribute used to verify a Sigstore keyless attestor.
+ See https://github.com/sigstore/cosign/blob/main/KEYLESS.md.
+ properties:
+ additionalExtensions:
+ additionalProperties:
+ type: string
+ description: AdditionalExtensions are
+ certificate-extensions used for keyless
+ signing.
+ type: object
+ ctlog:
+ description: |-
+ CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
+ Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
+ properties:
+ ignoreSCT:
+ description: |-
+ IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
+ timestamp. Default is false. Set to true if this was opted out during signing.
+ type: boolean
+ pubkey:
+ description: PubKey, if set, is
+ used to validate SCTs against
+ a custom source.
+ type: string
+ tsaCertChain:
+ description: |-
+ TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
+ contain the root CA certificate. Optionally may contain intermediate CA certificates, and
+ may contain the leaf TSA certificate if not present in the timestamurce.
+ type: string
+ type: object
+ issuer:
+ description: Issuer is the certificate
+ issuer used for keyless signing.
+ type: string
+ issuerRegExp:
+ description: IssuerRegExp is the regular
+ expression to match certificate issuer
+ used for keyless signing.
+ type: string
+ rekor:
+ description: |-
+ Rekor provides configuration for the Rekor transparency log service. If an empty object
+ is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
+ properties:
+ ignoreTlog:
+ description: IgnoreTlog skips transparency
+ log verification.
+ type: boolean
+ pubkey:
+ description: |-
+ RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
+ If set, this will be used to validate transparency log signatures from a custom Rekor.
+ type: string
+ url:
+ description: URL is the address
+ of the transparency log. Defaults
+ to the public Rekor log instance
+ https://rekor.sigstore.dev.
+ type: string
+ type: object
+ roots:
+ description: |-
+ Roots is an optional set of PEM encoded trusted root certificates.
+ If not provided, the system roots are used.
+ type: string
+ subject:
+ description: Subject is the verified
+ identity used for keyless signing,
+ for example the email address.
+ type: string
+ subjectRegExp:
+ description: SubjectRegExp is the regular
+ expression to match identity used
+ for keyless signing, for example the
+ email address.
+ type: string
+ type: object
+ keys:
+ description: Keys specifies one or more
+ public keys.
+ properties:
+ ctlog:
+ description: |-
+ CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
+ Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
+ properties:
+ ignoreSCT:
+ description: |-
+ IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
+ timestamp. Default is false. Set to true if this was opted out during signing.
+ type: boolean
+ pubkey:
+ description: PubKey, if set, is
+ used to validate SCTs against
+ a custom source.
+ type: string
+ tsaCertChain:
+ description: |-
+ TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
+ contain the root CA certificate. Optionally may contain intermediate CA certificates, and
+ may contain the leaf TSA certificate if not present in the timestamurce.
+ type: string
+ type: object
+ kms:
+ description: |-
+ KMS provides the URI to the public key stored in a Key Management System. See:
+ https://github.com/sigstore/cosign/blob/main/KMS.md
+ type: string
+ publicKeys:
+ description: |-
+ Keys is a set of X.509 public keys used to verify image signatures. The keys can be directly
+ specified or can be a variable reference to a key specified in a ConfigMap (see
+ https://kyverno.io/docs/writing-policies/variables/), or reference a standard Kubernetes Secret
+ elsewhere in the cluster by specifying it in the format "k8s:///".
+ The named Secret must specify a key `cosign.pub` containing the public key used for
+ verification, (see https://github.com/sigstore/cosign/blob/main/KMS.md#kubernetes-secret).
+ When multiple keys are specified each key is processed as a separate staticKey entry
+ (.attestors[*].entries.keys) within the set of attestors and the count is applied across the keys.
+ type: string
+ rekor:
+ description: |-
+ Rekor provides configuration for the Rekor transparency log service. If an empty object
+ is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
+ properties:
+ ignoreTlog:
+ description: IgnoreTlog skips transparency
+ log verification.
+ type: boolean
+ pubkey:
+ description: |-
+ RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
+ If set, this will be used to validate transparency log signatures from a custom Rekor.
+ type: string
+ url:
+ description: URL is the address
+ of the transparency log. Defaults
+ to the public Rekor log instance
+ https://rekor.sigstore.dev.
+ type: string
+ type: object
+ secret:
+ description: Reference to a Secret resource
+ that contains a public key
+ properties:
+ name:
+ description: Name of the secret.
+ The provided secret must contain
+ a key named cosign.pub.
+ type: string
+ namespace:
+ description: Namespace name where
+ the Secret exists.
+ type: string
+ required:
+ - name
+ - namespace
+ type: object
+ signatureAlgorithm:
+ default: sha256
+ description: Specify signature algorithm
+ for public keys. Supported values
+ are sha224, sha256, sha384 and sha512.
+ type: string
+ type: object
+ repository:
+ description: |-
+ Repository is an optional alternate OCI repository to use for signatures and attestations that match this rule.
+ If specified Repository will override other OCI image repository locations for this Attestor.
+ type: string
+ type: object
+ type: array
+ type: object
+ type: array
+ dryRun:
+ description: DryRun configuration
+ properties:
+ enable:
+ type: boolean
+ namespace:
+ type: string
+ type: object
+ ignoreFields:
+ description: Fields which will be ignored while comparing
+ manifests.
+ items:
+ properties:
+ fields:
+ items:
+ type: string
+ type: array
+ objects:
+ items:
+ properties:
+ group:
+ type: string
+ kind:
+ type: string
+ name:
+ type: string
+ namespace:
+ type: string
+ version:
+ type: string
+ type: object
+ type: array
+ type: object
+ type: array
+ repository:
+ description: |-
+ Repository is an optional alternate OCI repository to use for resource bundle reference.
+ The repository can be overridden per Attestor or Attestation.
+ type: string
+ type: object
+ message:
+ description: Message specifies a custom message to be displayed
+ on failure.
+ type: string
+ pattern:
+ description: Pattern specifies an overlay-style pattern
+ used to check resources.
+ x-kubernetes-preserve-unknown-fields: true
+ podSecurity:
+ description: |-
+ PodSecurity applies exemptions for Kubernetes Pod Security admission
+ by specifying exclusions for Pod Security Standards controls.
+ properties:
+ exclude:
+ description: Exclude specifies the Pod Security Standard
+ controls to be excluded.
+ items:
+ description: PodSecurityStandard specifies the Pod
+ Security Standard controls to be excluded.
+ properties:
+ controlName:
+ description: |-
+ ControlName specifies the name of the Pod Security Standard control.
+ See: https://kubernetes.io/docs/concepts/security/pod-security-standards/
+ enum:
+ - HostProcess
+ - Host Namespaces
+ - Privileged Containers
+ - Capabilities
+ - HostPath Volumes
+ - Host Ports
+ - AppArmor
+ - SELinux
+ - /proc Mount Type
+ - Seccomp
+ - Sysctls
+ - Volume Types
+ - Privilege Escalation
+ - Running as Non-root
+ - Running as Non-root user
+ type: string
+ images:
+ description: |-
+ Images selects matching containers and applies the container level PSS.
+ Each image is the image name consisting of the registry address, repository, image, and tag.
+ Empty list matches no containers, PSS checks are applied at the pod level only.
+ Wildcards ('*' and '?') are allowed. See: https://kubernetes.io/docs/concepts/containers/images.
+ items:
+ type: string
+ type: array
+ restrictedField:
+ description: |-
+ RestrictedField selects the field for the given Pod Security Standard control.
+ When not set, all restricted fields for the control are selected.
+ type: string
+ values:
+ description: Values defines the allowed values
+ that can be excluded.
+ items:
+ type: string
+ type: array
+ required:
+ - controlName
+ type: object
+ type: array
+ level:
+ description: |-
+ Level defines the Pod Security Standard level to be applied to workloads.
+ Allowed values are privileged, baseline, and restricted.
+ enum:
+ - privileged
+ - baseline
+ - restricted
+ type: string
+ version:
+ description: |-
+ Version defines the Pod Security Standard versions that Kubernetes supports.
+ Allowed values are v1.19, v1.20, v1.21, v1.22, v1.23, v1.24, v1.25, v1.26, v1.27, v1.28, v1.29, latest. Defaults to latest.
+ enum:
+ - v1.19
+ - v1.20
+ - v1.21
+ - v1.22
+ - v1.23
+ - v1.24
+ - v1.25
+ - v1.26
+ - v1.27
+ - v1.28
+ - v1.29
+ - latest
+ type: string
+ type: object
+ validationFailureAction:
+ description: |-
+ ValidationFailureAction defines if a validation policy rule violation should block
+ the admission review request (Enforce), or allow (Audit) the admission review request
+ and report an error in a policy report. Optional.
+ Allowed values are Audit or Enforce.
+ enum:
+ - Audit
+ - Enforce
+ type: string
+ validationFailureActionOverrides:
+ description: |-
+ ValidationFailureActionOverrides is a Cluster Policy attribute that specifies ValidationFailureAction
+ namespace-wise. It overrides ValidationFailureAction for the specified namespaces.
+ items:
+ properties:
+ action:
+ description: ValidationFailureAction defines the policy
+ validation failure action
+ enum:
+ - audit
+ - enforce
+ - Audit
+ - Enforce
+ type: string
+ namespaceSelector:
+ description: |-
+ A label selector is a label query over a set of resources. The result of matchLabels and
+ matchExpressions are ANDed. An empty label selector matches all objects. A null
+ label selector matches no objects.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ items:
+ type: string
+ type: array
+ type: object
+ type: array
+ type: object
+ verifyImages:
+ description: VerifyImages is used to verify image signatures
+ and mutate them to add a digest
+ items:
+ description: |-
+ ImageVerification validates that images that match the specified pattern
+ are signed with the supplied public key. Once the image is verified it is
+ mutated to include the SHA digest retrieved during the registration.
+ properties:
+ additionalExtensions:
+ additionalProperties:
+ type: string
+ description: Deprecated.
+ type: object
+ annotations:
+ additionalProperties:
+ type: string
+ description: Deprecated. Use annotations per Attestor
+ instead.
+ type: object
+ attestations:
+ description: |-
+ Attestations are optional checks for signed in-toto Statements used to verify the image.
+ See https://github.com/in-toto/attestation. Kyverno fetches signed attestations from the
+ OCI registry and decodes them into a list of Statement declarations.
+ items:
+ description: |-
+ Attestation are checks for signed in-toto Statements that are used to verify the image.
+ See https://github.com/in-toto/attestation. Kyverno fetches signed attestations from the
+ OCI registry and decodes them into a list of Statements.
+ properties:
+ attestors:
+ description: Attestors specify the required attestors
+ (i.e. authorities).
+ items:
+ properties:
+ count:
+ description: |-
+ Count specifies the required number of entries that must match. If the count is null, all entries must match
+ (a logical AND). If the count is 1, at least one entry must match (a logical OR). If the count contains a
+ value N, then N must be less than or equal to the size of entries, and at least N entries must match.
+ minimum: 1
+ type: integer
+ entries:
+ description: |-
+ Entries contains the available attestors. An attestor can be a static key,
+ attributes for keyless verification, or a nested attestor declaration.
+ items:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations are used for image verification.
+ Every specified key-value pair must exist and match in the verified payload.
+ The payload may contain other key-value pairs.
+ type: object
+ attestor:
+ description: Attestor is a nested set
+ of Attestor used to specify a more
+ complex set of match authorities.
+ x-kubernetes-preserve-unknown-fields: true
+ certificates:
+ description: Certificates specifies
+ one or more certificates.
+ properties:
+ cert:
+ description: Cert is an optional
+ PEM-encoded public certificate.
+ type: string
+ certChain:
+ description: CertChain is an optional
+ PEM encoded set of certificates
+ used to verify.
+ type: string
+ ctlog:
+ description: |-
+ CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
+ Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
+ properties:
+ ignoreSCT:
+ description: |-
+ IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
+ timestamp. Default is false. Set to true if this was opted out during signing.
+ type: boolean
+ pubkey:
+ description: PubKey, if set,
+ is used to validate SCTs against
+ a custom source.
+ type: string
+ tsaCertChain:
+ description: |-
+ TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
+ contain the root CA certificate. Optionally may contain intermediate CA certificates, and
+ may contain the leaf TSA certificate if not present in the timestamurce.
+ type: string
+ type: object
+ rekor:
+ description: |-
+ Rekor provides configuration for the Rekor transparency log service. If an empty object
+ is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
+ properties:
+ ignoreTlog:
+ description: IgnoreTlog skips
+ transparency log verification.
+ type: boolean
+ pubkey:
+ description: |-
+ RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
+ If set, this will be used to validate transparency log signatures from a custom Rekor.
+ type: string
+ url:
+ description: URL is the address
+ of the transparency log. Defaults
+ to the public Rekor log instance
+ https://rekor.sigstore.dev.
+ type: string
+ type: object
+ type: object
+ keyless:
+ description: |-
+ Keyless is a set of attribute used to verify a Sigstore keyless attestor.
+ See https://github.com/sigstore/cosign/blob/main/KEYLESS.md.
+ properties:
+ additionalExtensions:
+ additionalProperties:
+ type: string
+ description: AdditionalExtensions
+ are certificate-extensions used
+ for keyless signing.
+ type: object
+ ctlog:
+ description: |-
+ CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
+ Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
+ properties:
+ ignoreSCT:
+ description: |-
+ IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
+ timestamp. Default is false. Set to true if this was opted out during signing.
+ type: boolean
+ pubkey:
+ description: PubKey, if set,
+ is used to validate SCTs against
+ a custom source.
+ type: string
+ tsaCertChain:
+ description: |-
+ TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
+ contain the root CA certificate. Optionally may contain intermediate CA certificates, and
+ may contain the leaf TSA certificate if not present in the timestamurce.
+ type: string
+ type: object
+ issuer:
+ description: Issuer is the certificate
+ issuer used for keyless signing.
+ type: string
+ issuerRegExp:
+ description: IssuerRegExp is the
+ regular expression to match certificate
+ issuer used for keyless signing.
+ type: string
+ rekor:
+ description: |-
+ Rekor provides configuration for the Rekor transparency log service. If an empty object
+ is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
+ properties:
+ ignoreTlog:
+ description: IgnoreTlog skips
+ transparency log verification.
+ type: boolean
+ pubkey:
+ description: |-
+ RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
+ If set, this will be used to validate transparency log signatures from a custom Rekor.
+ type: string
+ url:
+ description: URL is the address
+ of the transparency log. Defaults
+ to the public Rekor log instance
+ https://rekor.sigstore.dev.
+ type: string
+ type: object
+ roots:
+ description: |-
+ Roots is an optional set of PEM encoded trusted root certificates.
+ If not provided, the system roots are used.
+ type: string
+ subject:
+ description: Subject is the verified
+ identity used for keyless signing,
+ for example the email address.
+ type: string
+ subjectRegExp:
+ description: SubjectRegExp is the
+ regular expression to match identity
+ used for keyless signing, for
+ example the email address.
+ type: string
+ type: object
+ keys:
+ description: Keys specifies one or more
+ public keys.
+ properties:
+ ctlog:
+ description: |-
+ CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
+ Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
+ properties:
+ ignoreSCT:
+ description: |-
+ IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
+ timestamp. Default is false. Set to true if this was opted out during signing.
+ type: boolean
+ pubkey:
+ description: PubKey, if set,
+ is used to validate SCTs against
+ a custom source.
+ type: string
+ tsaCertChain:
+ description: |-
+ TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
+ contain the root CA certificate. Optionally may contain intermediate CA certificates, and
+ may contain the leaf TSA certificate if not present in the timestamurce.
+ type: string
+ type: object
+ kms:
+ description: |-
+ KMS provides the URI to the public key stored in a Key Management System. See:
+ https://github.com/sigstore/cosign/blob/main/KMS.md
+ type: string
+ publicKeys:
+ description: |-
+ Keys is a set of X.509 public keys used to verify image signatures. The keys can be directly
+ specified or can be a variable reference to a key specified in a ConfigMap (see
+ https://kyverno.io/docs/writing-policies/variables/), or reference a standard Kubernetes Secret
+ elsewhere in the cluster by specifying it in the format "k8s:///".
+ The named Secret must specify a key `cosign.pub` containing the public key used for
+ verification, (see https://github.com/sigstore/cosign/blob/main/KMS.md#kubernetes-secret).
+ When multiple keys are specified each key is processed as a separate staticKey entry
+ (.attestors[*].entries.keys) within the set of attestors and the count is applied across the keys.
+ type: string
+ rekor:
+ description: |-
+ Rekor provides configuration for the Rekor transparency log service. If an empty object
+ is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
+ properties:
+ ignoreTlog:
+ description: IgnoreTlog skips
+ transparency log verification.
+ type: boolean
+ pubkey:
+ description: |-
+ RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
+ If set, this will be used to validate transparency log signatures from a custom Rekor.
+ type: string
+ url:
+ description: URL is the address
+ of the transparency log. Defaults
+ to the public Rekor log instance
+ https://rekor.sigstore.dev.
+ type: string
+ type: object
+ secret:
+ description: Reference to a Secret
+ resource that contains a public
+ key
+ properties:
+ name:
+ description: Name of the secret.
+ The provided secret must contain
+ a key named cosign.pub.
+ type: string
+ namespace:
+ description: Namespace name
+ where the Secret exists.
+ type: string
+ required:
+ - name
+ - namespace
+ type: object
+ signatureAlgorithm:
+ default: sha256
+ description: Specify signature algorithm
+ for public keys. Supported values
+ are sha224, sha256, sha384 and
+ sha512.
+ type: string
+ type: object
+ repository:
+ description: |-
+ Repository is an optional alternate OCI repository to use for signatures and attestations that match this rule.
+ If specified Repository will override other OCI image repository locations for this Attestor.
+ type: string
+ type: object
+ type: array
+ type: object
+ type: array
+ conditions:
+ description: |-
+ Conditions are used to verify attributes within a Predicate. If no Conditions are specified
+ the attestation check is satisfied as long there are predicates that match the predicate type.
+ items:
+ description: |-
+ AnyAllConditions consists of conditions wrapped denoting a logical criteria to be fulfilled.
+ AnyConditions get fulfilled when at least one of its sub-conditions passes.
+ AllConditions get fulfilled only when all of its sub-conditions pass.
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ type: array
+ predicateType:
+ description: Deprecated in favour of 'Type', to
+ be removed soon
+ type: string
+ type:
+ description: Type defines the type of attestation
+ contained within the Statement.
+ type: string
+ type: object
+ type: array
+ attestors:
+ description: Attestors specified the required attestors
+ (i.e. authorities)
+ items:
+ properties:
+ count:
+ description: |-
+ Count specifies the required number of entries that must match. If the count is null, all entries must match
+ (a logical AND). If the count is 1, at least one entry must match (a logical OR). If the count contains a
+ value N, then N must be less than or equal to the size of entries, and at least N entries must match.
+ minimum: 1
+ type: integer
+ entries:
+ description: |-
+ Entries contains the available attestors. An attestor can be a static key,
+ attributes for keyless verification, or a nested attestor declaration.
+ items:
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations are used for image verification.
+ Every specified key-value pair must exist and match in the verified payload.
+ The payload may contain other key-value pairs.
+ type: object
+ attestor:
+ description: Attestor is a nested set of Attestor
+ used to specify a more complex set of match
+ authorities.
+ x-kubernetes-preserve-unknown-fields: true
+ certificates:
+ description: Certificates specifies one or
+ more certificates.
+ properties:
+ cert:
+ description: Cert is an optional PEM-encoded
+ public certificate.
+ type: string
+ certChain:
+ description: CertChain is an optional
+ PEM encoded set of certificates used
+ to verify.
+ type: string
+ ctlog:
+ description: |-
+ CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
+ Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
+ properties:
+ ignoreSCT:
+ description: |-
+ IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
+ timestamp. Default is false. Set to true if this was opted out during signing.
+ type: boolean
+ pubkey:
+ description: PubKey, if set, is used
+ to validate SCTs against a custom
+ source.
+ type: string
+ tsaCertChain:
+ description: |-
+ TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
+ contain the root CA certificate. Optionally may contain intermediate CA certificates, and
+ may contain the leaf TSA certificate if not present in the timestamurce.
+ type: string
+ type: object
+ rekor:
+ description: |-
+ Rekor provides configuration for the Rekor transparency log service. If an empty object
+ is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
+ properties:
+ ignoreTlog:
+ description: IgnoreTlog skips transparency
+ log verification.
+ type: boolean
+ pubkey:
+ description: |-
+ RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
+ If set, this will be used to validate transparency log signatures from a custom Rekor.
+ type: string
+ url:
+ description: URL is the address of
+ the transparency log. Defaults to
+ the public Rekor log instance https://rekor.sigstore.dev.
+ type: string
+ type: object
+ type: object
+ keyless:
+ description: |-
+ Keyless is a set of attribute used to verify a Sigstore keyless attestor.
+ See https://github.com/sigstore/cosign/blob/main/KEYLESS.md.
+ properties:
+ additionalExtensions:
+ additionalProperties:
+ type: string
+ description: AdditionalExtensions are
+ certificate-extensions used for keyless
+ signing.
+ type: object
+ ctlog:
+ description: |-
+ CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
+ Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
+ properties:
+ ignoreSCT:
+ description: |-
+ IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
+ timestamp. Default is false. Set to true if this was opted out during signing.
+ type: boolean
+ pubkey:
+ description: PubKey, if set, is used
+ to validate SCTs against a custom
+ source.
+ type: string
+ tsaCertChain:
+ description: |-
+ TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
+ contain the root CA certificate. Optionally may contain intermediate CA certificates, and
+ may contain the leaf TSA certificate if not present in the timestamurce.
+ type: string
+ type: object
+ issuer:
+ description: Issuer is the certificate
+ issuer used for keyless signing.
+ type: string
+ issuerRegExp:
+ description: IssuerRegExp is the regular
+ expression to match certificate issuer
+ used for keyless signing.
+ type: string
+ rekor:
+ description: |-
+ Rekor provides configuration for the Rekor transparency log service. If an empty object
+ is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
+ properties:
+ ignoreTlog:
+ description: IgnoreTlog skips transparency
+ log verification.
+ type: boolean
+ pubkey:
+ description: |-
+ RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
+ If set, this will be used to validate transparency log signatures from a custom Rekor.
+ type: string
+ url:
+ description: URL is the address of
+ the transparency log. Defaults to
+ the public Rekor log instance https://rekor.sigstore.dev.
+ type: string
+ type: object
+ roots:
+ description: |-
+ Roots is an optional set of PEM encoded trusted root certificates.
+ If not provided, the system roots are used.
+ type: string
+ subject:
+ description: Subject is the verified identity
+ used for keyless signing, for example
+ the email address.
+ type: string
+ subjectRegExp:
+ description: SubjectRegExp is the regular
+ expression to match identity used for
+ keyless signing, for example the email
+ address.
+ type: string
+ type: object
+ keys:
+ description: Keys specifies one or more public
+ keys.
+ properties:
+ ctlog:
+ description: |-
+ CTLog (certificate timestamp log) provides a configuration for validation of Signed Certificate
+ Timestamps (SCTs). If the value is unset, the default behavior by Cosign is used.
+ properties:
+ ignoreSCT:
+ description: |-
+ IgnoreSCT defines whether to use the Signed Certificate Timestamp (SCT) log to check for a certificate
+ timestamp. Default is false. Set to true if this was opted out during signing.
+ type: boolean
+ pubkey:
+ description: PubKey, if set, is used
+ to validate SCTs against a custom
+ source.
+ type: string
+ tsaCertChain:
+ description: |-
+ TSACertChain, if set, is the PEM-encoded certificate chain file for the RFC3161 timestamp authority. Must
+ contain the root CA certificate. Optionally may contain intermediate CA certificates, and
+ may contain the leaf TSA certificate if not present in the timestamurce.
+ type: string
+ type: object
+ kms:
+ description: |-
+ KMS provides the URI to the public key stored in a Key Management System. See:
+ https://github.com/sigstore/cosign/blob/main/KMS.md
+ type: string
+ publicKeys:
+ description: |-
+ Keys is a set of X.509 public keys used to verify image signatures. The keys can be directly
+ specified or can be a variable reference to a key specified in a ConfigMap (see
+ https://kyverno.io/docs/writing-policies/variables/), or reference a standard Kubernetes Secret
+ elsewhere in the cluster by specifying it in the format "k8s:///".
+ The named Secret must specify a key `cosign.pub` containing the public key used for
+ verification, (see https://github.com/sigstore/cosign/blob/main/KMS.md#kubernetes-secret).
+ When multiple keys are specified each key is processed as a separate staticKey entry
+ (.attestors[*].entries.keys) within the set of attestors and the count is applied across the keys.
+ type: string
+ rekor:
+ description: |-
+ Rekor provides configuration for the Rekor transparency log service. If an empty object
+ is provided the public instance of Rekor (https://rekor.sigstore.dev) is used.
+ properties:
+ ignoreTlog:
+ description: IgnoreTlog skips transparency
+ log verification.
+ type: boolean
+ pubkey:
+ description: |-
+ RekorPubKey is an optional PEM-encoded public key to use for a custom Rekor.
+ If set, this will be used to validate transparency log signatures from a custom Rekor.
+ type: string
+ url:
+ description: URL is the address of
+ the transparency log. Defaults to
+ the public Rekor log instance https://rekor.sigstore.dev.
+ type: string
+ type: object
+ secret:
+ description: Reference to a Secret resource
+ that contains a public key
+ properties:
+ name:
+ description: Name of the secret. The
+ provided secret must contain a key
+ named cosign.pub.
+ type: string
+ namespace:
+ description: Namespace name where
+ the Secret exists.
+ type: string
+ required:
+ - name
+ - namespace
+ type: object
+ signatureAlgorithm:
+ default: sha256
+ description: Specify signature algorithm
+ for public keys. Supported values are
+ sha224, sha256, sha384 and sha512.
+ type: string
+ type: object
+ repository:
+ description: |-
+ Repository is an optional alternate OCI repository to use for signatures and attestations that match this rule.
+ If specified Repository will override other OCI image repository locations for this Attestor.
+ type: string
+ type: object
+ type: array
+ type: object
+ type: array
+ cosignOCI11:
+ description: |-
+ CosignOCI11 enables the experimental OCI 1.1 behaviour in cosign image verification.
+ Defaults to false.
+ type: boolean
+ image:
+ description: Deprecated. Use ImageReferences instead.
+ type: string
+ imageReferences:
+ description: |-
+ ImageReferences is a list of matching image reference patterns. At least one pattern in the
+ list must match the image for the rule to apply. Each image reference consists of a registry
+ address (defaults to docker.io), repository, image, and tag (defaults to latest).
+ Wildcards ('*' and '?') are allowed. See: https://kubernetes.io/docs/concepts/containers/images.
+ items:
+ type: string
+ type: array
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides credentials
+ that will be used for authentication with registry.
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows insecure
+ access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ issuer:
+ description: Deprecated. Use KeylessAttestor instead.
+ type: string
+ key:
+ description: Deprecated. Use StaticKeyAttestor instead.
+ type: string
mutateDigest:
default: true
description: |-
@@ -9856,75 +10257,286 @@ spec:
type: boolean
providers:
description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential providers
+ required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object
+ representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential providers
- required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
type: string
type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
type: string
type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object
- representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
items:
description: ResourceFilter allow users to "AND" or
"OR" between resources
@@ -9947,242 +10559,527 @@ spec:
and values support the wildcard characters "*" (matches zero or many characters) and
"?" (matches at least one character).
type: object
- kinds:
- description: Kinds is a list of resource kinds.
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
items:
type: string
type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
type: string
type: array
- namespaceSelector:
+ selector:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
properties:
matchExpressions:
description: matchExpressions is a list
of label selector requirements. The
requirements are ANDed.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one of
+ the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list
+ of sub-elements by creating a context for each entry
+ in the list and looping over it to apply the specified
+ logic.
items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
kinds:
description: Kinds is a list of resource kinds.
items:
type: string
type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ selector:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list
@@ -10228,416 +11125,329 @@ spec:
type: object
type: object
x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
- items:
+ type: object
+ context:
+ description: Context defines variables and data
+ sources that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains
+ the HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data
+ value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: key is the label key
- that the selector applies to.
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- operator:
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap
+ reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference
+ is a reference to a cached global context
+ entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials
+ provides credentials that will be
+ used for authentication with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry
+ allows insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ description: Name is the variable name.
type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one of
- the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ variable:
+ description: Variable defines an arbitrary
+ JMESPath context variable that can be
+ defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
+ value:
+ description: Value is any arbitrary
+ JSON object representable in YAML
+ or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source
- resource used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ description: Namespace specifies resource namespace.
type: string
- type: array
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
+ type: object
+ type: array
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -14349,62 +15159,272 @@ spec:
- google
- github
type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath context
+ variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object representable
+ in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
type: string
- type: array
- type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath context
- variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object representable
- in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
items:
description: ResourceFilter allow users to "AND" or "OR"
between resources
@@ -14509,22 +15529,236 @@ spec:
"UPDATE", "CONNECT", "DELETE"], which are used
to match a specific action.
items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source resource
+ used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
+ items:
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
type: string
type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
selector:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list of
@@ -14571,344 +15805,321 @@ spec:
type: object
x-kubernetes-map-type: atomic
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
items:
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
+ apiCall:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
- items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: key is the label key that
- the selector applies to.
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- operator:
+ url:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
type: string
- values:
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ description: Name is the variable name.
type: string
- required:
- - kind
- - name
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source resource
- used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ kind:
+ description: Kind specifies resource kind.
type: string
- type: array
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
+ type: object
+ type: array
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -18283,563 +19494,985 @@ spec:
properties:
expression:
description: |-
- Expression represents the expression which will be evaluated by CEL. Must evaluate to bool.
- CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL 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 admission request(/pkg/apis/admission/types.go#AdmissionRequest).
- '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#Authz
- 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
- request resource.
- Documentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/
-
-
- Required.
- type: string
+ Expression represents the expression which will be evaluated by CEL. Must evaluate to bool.
+ CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL 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 admission request(/pkg/apis/admission/types.go#AdmissionRequest).
+ '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#Authz
+ 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
+ request resource.
+ Documentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/
+
+
+ Required.
+ type: string
+ name:
+ description: |-
+ Name is an identifier for this match condition, used for strategic merging of MatchConditions,
+ as well as providing an identifier for logging purposes. A good name should be descriptive of
+ the associated expression.
+ Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and
+ must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or
+ '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an
+ optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')
+
+
+ Required.
+ type: string
+ required:
+ - expression
+ - name
+ type: object
+ type: array
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the HTTP POST
+ data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request type (GET
+ or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is a reference
+ to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential providers
+ required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: |-
- Name is an identifier for this match condition, used for strategic merging of MatchConditions,
- as well as providing an identifier for logging purposes. A good name should be descriptive of
- the associated expression.
- Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and
- must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or
- '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an
- optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')
-
-
- Required.
+ description: Name is the variable name.
type: string
- required:
- - expression
- - name
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object
+ representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
type: array
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
+ items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
+ items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
items:
- description: RequestData contains the HTTP POST
- data
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
properties:
- key:
- description: Key is a unique identifier
- for the data value
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
required:
- - key
- - value
+ - kind
+ - name
type: object
+ x-kubernetes-map-type: atomic
type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
type: string
- method:
- default: GET
- description: Method is the HTTP request type (GET
- or POST). Defaults to GET.
- enum:
- - GET
- - POST
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
type: string
- service:
- description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
- properties:
- caBundle:
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- url:
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one of
+ the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- required:
- - url
- type: object
- urlPath:
- description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
- type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap namespace.
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is a reference
- to a cached global context entry.
- properties:
- jmesPath:
+ kind:
description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
type: string
name:
- description: Name of the global context entry
- type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
- description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential providers
- required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
- type: string
- type: array
- type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
+ description: Name of the object being referenced.
type: string
- reference:
+ namespace:
description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
type: string
required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object
- representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
+ - kind
+ - name
type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
properties:
- all:
- description: All allows specifying resources which will
- be ANDed
- items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list
+ of sub-elements by creating a context for each entry
+ in the list and looping over it to apply the specified
+ logic.
items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ description: Name specifies name of the resource.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
type: string
type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
selector:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list
@@ -18886,341 +20519,328 @@ spec:
type: object
x-kubernetes-map-type: atomic
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
+ context:
+ description: Context defines variables and data
+ sources that can be used during rule execution.
items:
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
+ apiCall:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains
+ the HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data
+ value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap
+ reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference
+ is a reference to a cached global context
+ entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials
+ provides credentials that will be
+ used for authentication with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry
+ allows insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one of
- the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary
+ JMESPath context variable that can be
+ defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary
+ JSON object representable in YAML
+ or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
type: string
- required:
- - kind
- - name
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source
- resource used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -23045,560 +24665,976 @@ spec:
properties:
expression:
description: |-
- Expression represents the expression which will be evaluated by CEL. Must evaluate to bool.
- CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL 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 admission request(/pkg/apis/admission/types.go#AdmissionRequest).
- '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#Authz
- 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
- request resource.
- Documentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/
-
-
- Required.
- type: string
+ Expression represents the expression which will be evaluated by CEL. Must evaluate to bool.
+ CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL 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 admission request(/pkg/apis/admission/types.go#AdmissionRequest).
+ '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#Authz
+ 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
+ request resource.
+ Documentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/
+
+
+ Required.
+ type: string
+ name:
+ description: |-
+ Name is an identifier for this match condition, used for strategic merging of MatchConditions,
+ as well as providing an identifier for logging purposes. A good name should be descriptive of
+ the associated expression.
+ Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and
+ must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or
+ '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an
+ optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')
+
+
+ Required.
+ type: string
+ required:
+ - expression
+ - name
+ type: object
+ type: array
+ context:
+ description: Context defines variables and data sources that
+ can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the HTTP POST
+ data
+ properties:
+ key:
+ description: Key is a unique identifier for
+ the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request type (GET
+ or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is a reference
+ to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides credentials
+ that will be used for authentication with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows insecure
+ access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential providers
+ required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: |-
- Name is an identifier for this match condition, used for strategic merging of MatchConditions,
- as well as providing an identifier for logging purposes. A good name should be descriptive of
- the associated expression.
- Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and
- must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or
- '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an
- optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')
-
-
- Required.
+ description: Name is the variable name.
type: string
- required:
- - expression
- - name
+ variable:
+ description: Variable defines an arbitrary JMESPath context
+ variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object representable
+ in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
type: array
- context:
- description: Context defines variables and data sources that
- can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
items:
- description: RequestData contains the HTTP POST
- data
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
properties:
- key:
- description: Key is a unique identifier for
- the data value
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
required:
- - key
- - value
+ - kind
+ - name
type: object
+ x-kubernetes-map-type: atomic
type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide role
+ names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
type: string
- method:
- default: GET
- description: Method is the HTTP request type (GET
- or POST). Defaults to GET.
- enum:
- - GET
- - POST
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
type: string
- service:
- description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
- properties:
- caBundle:
- description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
- type: string
- url:
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- required:
- - url
- type: object
- urlPath:
- description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
- type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
- properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap namespace.
- type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is a reference
- to a cached global context entry.
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
type: string
- name:
- description: Name of the global context entry
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used to
+ match a specific action.
+ items:
+ description: AdmissionOperation can have one of the
+ values CREATE, UPDATE, CONNECT, DELETE, which are
+ used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
type: string
- type: object
- imageRegistry:
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides credentials
- that will be used for authentication with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows insecure
- access to a registry.
- type: boolean
- providers:
- description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
- items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential providers
- required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
- type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
- type: string
- type: array
- type: object
- jmesPath:
+ apiGroup:
description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
type: string
- reference:
+ kind:
description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath context
- variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
type: string
- value:
- description: Value is any arbitrary JSON object representable
- in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
+ required:
+ - kind
+ - name
type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
properties:
- all:
- description: All allows specifying resources which will
- be ANDed
- items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source resource
+ used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ description: Name specifies name of the resource.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
type: string
type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
selector:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list of
@@ -23645,336 +25681,321 @@ spec:
type: object
x-kubernetes-map-type: atomic
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
items:
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
+ apiCall:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide role
- names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used to
- match a specific action.
- items:
- description: AdmissionOperation can have one of the
- values CREATE, UPDATE, CONNECT, DELETE, which are
- used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
type: string
- required:
- - kind
- - name
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source resource
- used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -27436,460 +29457,956 @@ spec:
Required.
type: string
- required:
- - expression
- - name
+ required:
+ - expression
+ - name
+ type: object
+ type: array
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the HTTP POST
+ data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request type (GET
+ or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is a reference
+ to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential providers
+ required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object
+ representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
type: array
- context:
- description: Context defines variables and data sources
- that can be used during rule execution.
- items:
- description: |-
- ContextEntry adds variables and data sources to a rule Context. Either a
- ConfigMap reference or a APILookup must be provided.
- properties:
- apiCall:
- description: |-
- APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
- The data returned is stored in the context with the name for the context entry.
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
properties:
- data:
- description: |-
- The data object specifies the POST data sent to the server.
- Only applicable when the method field is set to POST.
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
items:
- description: RequestData contains the HTTP POST
- data
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
+ items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
properties:
- key:
- description: Key is a unique identifier
- for the data value
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
type: string
- value:
- description: Value is the data value
- x-kubernetes-preserve-unknown-fields: true
required:
- - key
- - value
+ - kind
+ - name
type: object
+ x-kubernetes-map-type: atomic
type: array
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- method:
- default: GET
- description: Method is the HTTP request type (GET
- or POST). Defaults to GET.
- enum:
- - GET
- - POST
- type: string
- service:
- description: |-
- Service is an API call to a JSON web service.
- This is used for non-Kubernetes API server calls.
- It's mutually exclusive with the URLPath field.
+ type: object
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
+ items:
+ description: ResourceFilter allow users to "AND" or
+ "OR" between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
properties:
- caBundle:
+ annotations:
+ additionalProperties:
+ type: string
description: |-
- CABundle is a PEM encoded CA bundle which will be used to validate
- the server certificate.
- type: string
- url:
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
description: |-
- URL is the JSON web service URL. A typical form is
- `https://{service}.{namespace}:{port}/{path}`.
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
type: string
- required:
- - url
- type: object
- urlPath:
- description: |-
- URLPath is the URL path to be used in the HTTP GET or POST request to the
- Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
- The format required is the same format used by the `kubectl get --raw` command.
- See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
- for details.
- It's mutually exclusive with the Service field.
- type: string
- type: object
- configMap:
- description: ConfigMap is the ConfigMap reference.
- properties:
- name:
- description: Name is the ConfigMap name.
- type: string
- namespace:
- description: Namespace is the ConfigMap namespace.
- type: string
- required:
- - name
- type: object
- globalReference:
- description: GlobalContextEntryReference is a reference
- to a cached global context entry.
- properties:
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the JSON response returned from the server. For example
- a JMESPath of "items | length(@)" applied to the API server response
- for the URLPath "/apis/apps/v1/deployments" will return the total count
- of deployments across all namespaces.
- type: string
- name:
- description: Name of the global context entry
- type: string
- type: object
- imageRegistry:
- description: |-
- ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
- details.
- properties:
- imageRegistryCredentials:
- description: ImageRegistryCredentials provides
- credentials that will be used for authentication
- with registry
- properties:
- allowInsecureRegistry:
- description: AllowInsecureRegistry allows
- insecure access to a registry.
- type: boolean
- providers:
+ names:
description: |-
- Providers specifies a list of OCI Registry names, whose authentication providers are provided.
- It can be of one of these values: default,google,azure,amazon,github.
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
items:
- description: ImageRegistryCredentialsProvidersType
- provides the list of credential providers
- required.
- enum:
- - default
- - amazon
- - azure
- - google
- - github
type: string
type: array
- secrets:
+ namespaceSelector:
description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values
+ ["CREATE, "UPDATE", "CONNECT", "DELETE"],
+ which are used to match a specific action.
items:
+ description: AdmissionOperation can have
+ one of the values CREATE, UPDATE, CONNECT,
+ DELETE, which are used to match a specific
+ action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
type: string
type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath
- context variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object
- representable in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
- type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
- items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
items:
type: string
type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
type: string
- type: array
- name:
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: |-
+ ResourceDescription contains information about the resource being created or modified.
+ Requires at least one tag to be specified when under MatchResources.
+ Specifying ResourceDescription directly under match is being deprecated.
+ Please specify under "any" or "all" instead.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one of
+ the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
+ type: string
type: array
x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
+ required:
+ - key
+ - operator
type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list
+ of sub-elements by creating a context for each entry
+ in the list and looping over it to apply the specified
+ logic.
items:
- description: ResourceFilter allow users to "AND" or
- "OR" between resources
properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
kinds:
description: Kinds is a list of resource kinds.
items:
type: string
type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
+ selector:
description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list
@@ -27935,416 +30452,329 @@ spec:
type: object
type: object
x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values
- ["CREATE, "UPDATE", "CONNECT", "DELETE"],
- which are used to match a specific action.
- items:
- description: AdmissionOperation can have
- one of the values CREATE, UPDATE, CONNECT,
- DELETE, which are used to match a specific
- action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list
- of label selector requirements. The
- requirements are ANDed.
- items:
+ type: object
+ context:
+ description: Context defines variables and data
+ sources that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains
+ the HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data
+ value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap
+ reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference
+ is a reference to a cached global context
+ entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials
+ provides credentials that will be
+ used for authentication with registry
properties:
- key:
- description: key is the label key
- that the selector applies to.
- type: string
- operator:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry
+ allows insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ description: Name is the variable name.
type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: |-
- ResourceDescription contains information about the resource being created or modified.
- Requires at least one tag to be specified when under MatchResources.
- Specifying ResourceDescription directly under match is being deprecated.
- Please specify under "any" or "all" instead.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
- items:
- description: AdmissionOperation can have one of
- the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
- type: array
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ variable:
+ description: Variable defines an arbitrary
+ JMESPath context variable that can be
+ defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
+ value:
+ description: Value is any arbitrary
+ JSON object representable in YAML
+ or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source
- resource used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
+ description: Namespace specifies resource namespace.
type: string
- type: array
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
+ type: object
+ type: array
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -32057,62 +34487,272 @@ spec:
- google
- github
type: string
- type: array
- secrets:
- description: |-
- Secrets specifies a list of secrets that are provided for credentials.
- Secrets must live in the Kyverno namespace.
- items:
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary JMESPath context
+ variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON object representable
+ in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ exclude:
+ description: |-
+ ExcludeResources defines when this policy rule should not be applied. The exclude
+ criteria can include resource information (e.g. kind, name, namespace, labels)
+ and admission review request information like the name or role.
+ properties:
+ all:
+ description: All allows specifying resources which will
+ be ANDed
+ items:
+ description: ResourceFilter allow users to "AND" or "OR"
+ between resources
+ properties:
+ clusterRoles:
+ description: ClusterRoles is the list of cluster-wide
+ role names for the user.
+ items:
+ type: string
+ type: array
+ resources:
+ description: ResourceDescription contains information
+ about the resource being created or modified.
+ properties:
+ annotations:
+ additionalProperties:
+ type: string
+ description: |-
+ Annotations is a map of annotations (key-value pairs of type string). Annotation keys
+ and values support the wildcard characters "*" (matches zero or many characters) and
+ "?" (matches at least one character).
+ type: object
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ name:
+ description: |-
+ Name is the name of the resource. The name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ NOTE: "Name" is being deprecated in favor of "Names".
+ type: string
+ names:
+ description: |-
+ Names are the names of the resources. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ namespaceSelector:
+ description: |-
+ NamespaceSelector is a label selector for the resource namespace. Label keys and values
+ in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
+ and `?` (matches one character).Wildcards allows writing label selectors like
+ ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
+ does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ namespaces:
+ description: |-
+ Namespaces is a list of namespaces names. Each name supports wildcard characters
+ "*" (matches zero or many characters) and "?" (at least one character).
+ items:
+ type: string
+ type: array
+ operations:
+ description: Operations can contain values ["CREATE,
+ "UPDATE", "CONNECT", "DELETE"], which are used
+ to match a specific action.
+ items:
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
type: string
- type: array
- type: object
- jmesPath:
- description: |-
- JMESPath is an optional JSON Match Expression that can be used to
- transform the ImageData struct returned as a result of processing
- the image reference.
- type: string
- reference:
- description: |-
- Reference is image reference to a container image in the registry.
- Example: ghcr.io/kyverno/kyverno:latest
- type: string
- required:
- - reference
- type: object
- name:
- description: Name is the variable name.
- type: string
- variable:
- description: Variable defines an arbitrary JMESPath context
- variable that can be defined inline.
- properties:
- default:
- description: |-
- Default is an optional arbitrary JSON object that the variable may take if the JMESPath
- expression evaluates to nil
- x-kubernetes-preserve-unknown-fields: true
- jmesPath:
- description: |-
- JMESPath is an optional JMESPath Expression that can be used to
- transform the variable.
- type: string
- value:
- description: Value is any arbitrary JSON object representable
- in YAML or JSON form.
- x-kubernetes-preserve-unknown-fields: true
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
type: object
- type: object
- type: array
- exclude:
- description: |-
- ExcludeResources defines when this policy rule should not be applied. The exclude
- criteria can include resource information (e.g. kind, name, namespace, labels)
- and admission review request information like the name or role.
- properties:
- all:
- description: All allows specifying resources which will
- be ANDed
+ type: array
+ any:
+ description: Any allows specifying resources which will
+ be ORed
items:
description: ResourceFilter allow users to "AND" or "OR"
between resources
@@ -32217,22 +34857,236 @@ spec:
"UPDATE", "CONNECT", "DELETE"], which are used
to match a specific action.
items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
+ description: AdmissionOperation can have one
+ of the values CREATE, UPDATE, CONNECT, DELETE,
+ which are used to match a specific action.
+ enum:
+ - CREATE
+ - CONNECT
+ - UPDATE
+ - DELETE
+ type: string
+ type: array
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
+ characters `*` (matches zero or many characters) and `?` (matches one character).
+ Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
+ using ["*" : "*"] matches any key and value but does not match an empty label set.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of
+ label selector requirements. The requirements
+ are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role
+ names for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names
+ like users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source resource
+ used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that the
+ selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list of
+ sub-elements by creating a context for each entry in the
+ list and looping over it to apply the specified logic.
+ items:
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
type: string
type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
selector:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
properties:
matchExpressions:
description: matchExpressions is a list of
@@ -32279,344 +35133,321 @@ spec:
type: object
x-kubernetes-map-type: atomic
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
+ context:
+ description: Context defines variables and data sources
+ that can be used during rule execution.
items:
description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
+ apiCall:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
- type: object
- type: array
- any:
- description: Any allows specifying resources which will
- be ORed
- items:
- description: ResourceFilter allow users to "AND" or "OR"
- between resources
- properties:
- clusterRoles:
- description: ClusterRoles is the list of cluster-wide
- role names for the user.
- items:
- type: string
- type: array
- resources:
- description: ResourceDescription contains information
- about the resource being created or modified.
- properties:
- annotations:
- additionalProperties:
- type: string
- description: |-
- Annotations is a map of annotations (key-value pairs of type string). Annotation keys
- and values support the wildcard characters "*" (matches zero or many characters) and
- "?" (matches at least one character).
- type: object
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- name:
- description: |-
- Name is the name of the resource. The name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- NOTE: "Name" is being deprecated in favor of "Names".
- type: string
- names:
- description: |-
- Names are the names of the resources. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
- type: string
- type: array
- namespaceSelector:
- description: |-
- NamespaceSelector is a label selector for the resource namespace. Label keys and values
- in `matchLabels` support the wildcard characters `*` (matches zero or many characters)
- and `?` (matches one character).Wildcards allows writing label selectors like
- ["storage.k8s.io/*": "*"]. Note that using ["*" : "*"] matches any key and value but
- does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains the
+ HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
properties:
- key:
- description: key is the label key that
- the selector applies to.
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
type: string
- operator:
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference is
+ a reference to a cached global context entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials provides
+ credentials that will be used for authentication
+ with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry allows
+ insecure access to a registry.
+ type: boolean
+ providers:
description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
items:
type: string
type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- namespaces:
- description: |-
- Namespaces is a list of namespaces names. Each name supports wildcard characters
- "*" (matches zero or many characters) and "?" (at least one character).
- items:
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
type: string
- type: array
- operations:
- description: Operations can contain values ["CREATE,
- "UPDATE", "CONNECT", "DELETE"], which are used
- to match a specific action.
+ variable:
+ description: Variable defines an arbitrary JMESPath
+ context variable that can be defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary JSON
+ object representable in YAML or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
+ description: |-
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
+ type: string
+ name:
+ description: Name specifies the resource name.
+ type: string
+ namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
+ description: |-
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
items:
- description: AdmissionOperation can have one
- of the values CREATE, UPDATE, CONNECT, DELETE,
- which are used to match a specific action.
- enum:
- - CREATE
- - CONNECT
- - UPDATE
- - DELETE
- type: string
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
type: array
- selector:
+ any:
description: |-
- Selector is a label selector. Label keys and values in `matchLabels` support the wildcard
- characters `*` (matches zero or many characters) and `?` (matches one character).
- Wildcards allows writing label selectors like ["storage.k8s.io/*": "*"]. Note that
- using ["*" : "*"] matches any key and value but does not match an empty label set.
- properties:
- matchExpressions:
- description: matchExpressions is a list of
- label selector requirements. The requirements
- are ANDed.
- items:
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry (using
+ JMESPath) for conditional rule evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional display
+ message
+ type: string
+ operator:
description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
type: object
- roles:
- description: Roles is the list of namespaced role
- names for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names
- like users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
- description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
- kind:
- description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
- type: string
- name:
- description: Name of the object being referenced.
- type: string
- namespace:
- description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
- type: string
- required:
- - kind
- - name
- type: object
- x-kubernetes-map-type: atomic
- type: array
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
+ type: string
type: object
type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source resource
- used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- namespace:
- description: Namespace specifies source resource namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that the
- selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
@@ -36797,138 +39628,547 @@ spec:
map is equivalent to an element of matchExpressions, whose key field is "key", the
operator is "In", and the values array contains only "value". The requirements are ANDed.
type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- roles:
- description: Roles is the list of namespaced role names
- for the user.
- items:
- type: string
- type: array
- subjects:
- description: Subjects is the list of subject names like
- users, user groups, and service accounts.
- items:
- description: |-
- Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
- or a value for non-objects such as user and group names.
- properties:
- apiGroup:
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ roles:
+ description: Roles is the list of namespaced role names
+ for the user.
+ items:
+ type: string
+ type: array
+ subjects:
+ description: Subjects is the list of subject names like
+ users, user groups, and service accounts.
+ items:
+ description: |-
+ Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference,
+ or a value for non-objects such as user and group names.
+ properties:
+ apiGroup:
+ description: |-
+ APIGroup holds the API group of the referenced subject.
+ Defaults to "" for ServiceAccount subjects.
+ Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
+ type: string
+ kind:
+ description: |-
+ Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
+ If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ type: string
+ name:
+ description: Name of the object being referenced.
+ type: string
+ namespace:
+ description: |-
+ Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
+ the Authorizer should report an error.
+ type: string
+ required:
+ - kind
+ - name
+ type: object
+ x-kubernetes-map-type: atomic
+ type: array
+ type: object
+ generate:
+ description: Generation is used to create new resources.
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list of label
+ selector requirements. The requirements are
+ ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key that
+ the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ data:
+ description: |-
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
+ foreach:
+ description: ForEach applies generate rules to a list
+ of sub-elements by creating a context for each entry
+ in the list and looping over it to apply the specified
+ logic.
+ items:
+ properties:
+ apiVersion:
+ description: APIVersion specifies resource apiVersion.
+ type: string
+ clone:
+ description: |-
+ Clone specifies the source resource used to populate each generated resource.
+ At most one of Data or Clone can be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ properties:
+ name:
+ description: Name specifies name of the resource.
+ type: string
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ type: object
+ cloneList:
+ description: CloneList specifies the list of source
+ resource used to populate each generated resource.
+ properties:
+ kinds:
+ description: Kinds is a list of resource kinds.
+ items:
+ type: string
+ type: array
+ namespace:
+ description: Namespace specifies source resource
+ namespace.
+ type: string
+ selector:
+ description: |-
+ Selector is a label selector. Label keys and values in `matchLabels`.
+ wildcard characters are not supported.
+ properties:
+ matchExpressions:
+ description: matchExpressions is a list
+ of label selector requirements. The
+ requirements are ANDed.
+ items:
+ description: |-
+ A label selector requirement is a selector that contains values, a key, and an operator that
+ relates the key and values.
+ properties:
+ key:
+ description: key is the label key
+ that the selector applies to.
+ type: string
+ operator:
+ description: |-
+ operator represents a key's relationship to a set of values.
+ Valid operators are In, NotIn, Exists and DoesNotExist.
+ type: string
+ values:
+ description: |-
+ values is an array of string values. If the operator is In or NotIn,
+ the values array must be non-empty. If the operator is Exists or DoesNotExist,
+ the values array must be empty. This array is replaced during a strategic
+ merge patch.
+ items:
+ type: string
+ type: array
+ x-kubernetes-list-type: atomic
+ required:
+ - key
+ - operator
+ type: object
+ type: array
+ x-kubernetes-list-type: atomic
+ matchLabels:
+ additionalProperties:
+ type: string
+ description: |-
+ matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
+ map is equivalent to an element of matchExpressions, whose key field is "key", the
+ operator is "In", and the values array contains only "value". The requirements are ANDed.
+ type: object
+ type: object
+ x-kubernetes-map-type: atomic
+ type: object
+ context:
+ description: Context defines variables and data
+ sources that can be used during rule execution.
+ items:
+ description: |-
+ ContextEntry adds variables and data sources to a rule Context. Either a
+ ConfigMap reference or a APILookup must be provided.
+ properties:
+ apiCall:
+ description: |-
+ APICall is an HTTP request to the Kubernetes API server, or other JSON web service.
+ The data returned is stored in the context with the name for the context entry.
+ properties:
+ data:
+ description: |-
+ The data object specifies the POST data sent to the server.
+ Only applicable when the method field is set to POST.
+ items:
+ description: RequestData contains
+ the HTTP POST data
+ properties:
+ key:
+ description: Key is a unique identifier
+ for the data value
+ type: string
+ value:
+ description: Value is the data
+ value
+ x-kubernetes-preserve-unknown-fields: true
+ required:
+ - key
+ - value
+ type: object
+ type: array
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ method:
+ default: GET
+ description: Method is the HTTP request
+ type (GET or POST). Defaults to GET.
+ enum:
+ - GET
+ - POST
+ type: string
+ service:
+ description: |-
+ Service is an API call to a JSON web service.
+ This is used for non-Kubernetes API server calls.
+ It's mutually exclusive with the URLPath field.
+ properties:
+ caBundle:
+ description: |-
+ CABundle is a PEM encoded CA bundle which will be used to validate
+ the server certificate.
+ type: string
+ url:
+ description: |-
+ URL is the JSON web service URL. A typical form is
+ `https://{service}.{namespace}:{port}/{path}`.
+ type: string
+ required:
+ - url
+ type: object
+ urlPath:
+ description: |-
+ URLPath is the URL path to be used in the HTTP GET or POST request to the
+ Kubernetes API server (e.g. "/api/v1/namespaces" or "/apis/apps/v1/deployments").
+ The format required is the same format used by the `kubectl get --raw` command.
+ See https://kyverno.io/docs/writing-policies/external-data-sources/#variables-from-kubernetes-api-server-calls
+ for details.
+ It's mutually exclusive with the Service field.
+ type: string
+ type: object
+ configMap:
+ description: ConfigMap is the ConfigMap
+ reference.
+ properties:
+ name:
+ description: Name is the ConfigMap name.
+ type: string
+ namespace:
+ description: Namespace is the ConfigMap
+ namespace.
+ type: string
+ required:
+ - name
+ type: object
+ globalReference:
+ description: GlobalContextEntryReference
+ is a reference to a cached global context
+ entry.
+ properties:
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the JSON response returned from the server. For example
+ a JMESPath of "items | length(@)" applied to the API server response
+ for the URLPath "/apis/apps/v1/deployments" will return the total count
+ of deployments across all namespaces.
+ type: string
+ name:
+ description: Name of the global context
+ entry
+ type: string
+ type: object
+ imageRegistry:
+ description: |-
+ ImageRegistry defines requests to an OCI/Docker V2 registry to fetch image
+ details.
+ properties:
+ imageRegistryCredentials:
+ description: ImageRegistryCredentials
+ provides credentials that will be
+ used for authentication with registry
+ properties:
+ allowInsecureRegistry:
+ description: AllowInsecureRegistry
+ allows insecure access to a registry.
+ type: boolean
+ providers:
+ description: |-
+ Providers specifies a list of OCI Registry names, whose authentication providers are provided.
+ It can be of one of these values: default,google,azure,amazon,github.
+ items:
+ description: ImageRegistryCredentialsProvidersType
+ provides the list of credential
+ providers required.
+ enum:
+ - default
+ - amazon
+ - azure
+ - google
+ - github
+ type: string
+ type: array
+ secrets:
+ description: |-
+ Secrets specifies a list of secrets that are provided for credentials.
+ Secrets must live in the Kyverno namespace.
+ items:
+ type: string
+ type: array
+ type: object
+ jmesPath:
+ description: |-
+ JMESPath is an optional JSON Match Expression that can be used to
+ transform the ImageData struct returned as a result of processing
+ the image reference.
+ type: string
+ reference:
+ description: |-
+ Reference is image reference to a container image in the registry.
+ Example: ghcr.io/kyverno/kyverno:latest
+ type: string
+ required:
+ - reference
+ type: object
+ name:
+ description: Name is the variable name.
+ type: string
+ variable:
+ description: Variable defines an arbitrary
+ JMESPath context variable that can be
+ defined inline.
+ properties:
+ default:
+ description: |-
+ Default is an optional arbitrary JSON object that the variable may take if the JMESPath
+ expression evaluates to nil
+ x-kubernetes-preserve-unknown-fields: true
+ jmesPath:
+ description: |-
+ JMESPath is an optional JMESPath Expression that can be used to
+ transform the variable.
+ type: string
+ value:
+ description: Value is any arbitrary
+ JSON object representable in YAML
+ or JSON form.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: object
+ type: array
+ data:
description: |-
- APIGroup holds the API group of the referenced subject.
- Defaults to "" for ServiceAccount subjects.
- Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
- type: string
+ Data provides the resource declaration used to populate each generated resource.
+ At most one of Data or Clone must be specified. If neither are provided, the generated
+ resource will be created with default data only.
+ x-kubernetes-preserve-unknown-fields: true
kind:
+ description: Kind specifies resource kind.
+ type: string
+ list:
description: |-
- Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
- If the Authorizer does not recognized the kind value, the Authorizer should report an error.
+ List specifies a JMESPath expression that results in one or more elements
+ to which the validation logic is applied.
type: string
name:
- description: Name of the object being referenced.
+ description: Name specifies the resource name.
type: string
namespace:
+ description: Namespace specifies resource namespace.
+ type: string
+ preconditions:
description: |-
- Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
- the Authorizer should report an error.
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+ set of conditions. The declaration can contain nested `any` or `all` statements.
+ See: https://kyverno.io/docs/writing-policies/preconditions/
+ properties:
+ all:
+ description: |-
+ AllConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, all of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ any:
+ description: |-
+ AnyConditions enable variable-based conditional rule execution. This is useful for
+ finer control of when an rule is applied. A condition can reference object data
+ using JMESPath notation.
+ Here, at least one of the conditions need to pass
+ items:
+ description: Condition defines variable-based
+ conditional criteria for rule execution.
+ properties:
+ key:
+ description: Key is the context entry
+ (using JMESPath) for conditional rule
+ evaluation.
+ x-kubernetes-preserve-unknown-fields: true
+ message:
+ description: Message is an optional
+ display message
+ type: string
+ operator:
+ description: |-
+ Operator is the conditional operation to perform. Valid operators are:
+ Equals, NotEquals, In, AnyIn, AllIn, NotIn, AnyNotIn, AllNotIn, GreaterThanOrEquals,
+ GreaterThan, LessThanOrEquals, LessThan, DurationGreaterThanOrEquals, DurationGreaterThan,
+ DurationLessThanOrEquals, DurationLessThan
+ enum:
+ - Equals
+ - NotEquals
+ - In
+ - AnyIn
+ - AllIn
+ - NotIn
+ - AnyNotIn
+ - AllNotIn
+ - GreaterThanOrEquals
+ - GreaterThan
+ - LessThanOrEquals
+ - LessThan
+ - DurationGreaterThanOrEquals
+ - DurationGreaterThan
+ - DurationLessThanOrEquals
+ - DurationLessThan
+ type: string
+ value:
+ description: |-
+ Value is the conditional value, or set of values. The values can be fixed set
+ or can be variables declared using JMESPath.
+ x-kubernetes-preserve-unknown-fields: true
+ type: object
+ type: array
+ type: object
+ x-kubernetes-preserve-unknown-fields: true
+ uid:
+ description: UID specifies the resource uid.
type: string
- required:
- - kind
- - name
type: object
- x-kubernetes-map-type: atomic
type: array
- type: object
- generate:
- description: Generation is used to create new resources.
- properties:
- apiVersion:
- description: APIVersion specifies resource apiVersion.
- type: string
- clone:
- description: |-
- Clone specifies the source resource used to populate each generated resource.
- At most one of Data or Clone can be specified. If neither are provided, the generated
- resource will be created with default data only.
- properties:
- name:
- description: Name specifies name of the resource.
- type: string
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- type: object
- cloneList:
- description: CloneList specifies the list of source
- resource used to populate each generated resource.
- properties:
- kinds:
- description: Kinds is a list of resource kinds.
- items:
- type: string
- type: array
- namespace:
- description: Namespace specifies source resource
- namespace.
- type: string
- selector:
- description: |-
- Selector is a label selector. Label keys and values in `matchLabels`.
- wildcard characters are not supported.
- properties:
- matchExpressions:
- description: matchExpressions is a list of label
- selector requirements. The requirements are
- ANDed.
- items:
- description: |-
- A label selector requirement is a selector that contains values, a key, and an operator that
- relates the key and values.
- properties:
- key:
- description: key is the label key that
- the selector applies to.
- type: string
- operator:
- description: |-
- operator represents a key's relationship to a set of values.
- Valid operators are In, NotIn, Exists and DoesNotExist.
- type: string
- values:
- description: |-
- values is an array of string values. If the operator is In or NotIn,
- the values array must be non-empty. If the operator is Exists or DoesNotExist,
- the values array must be empty. This array is replaced during a strategic
- merge patch.
- items:
- type: string
- type: array
- x-kubernetes-list-type: atomic
- required:
- - key
- - operator
- type: object
- type: array
- x-kubernetes-list-type: atomic
- matchLabels:
- additionalProperties:
- type: string
- description: |-
- matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
- map is equivalent to an element of matchExpressions, whose key field is "key", the
- operator is "In", and the values array contains only "value". The requirements are ANDed.
- type: object
- type: object
- x-kubernetes-map-type: atomic
- type: object
- data:
- description: |-
- Data provides the resource declaration used to populate each generated resource.
- At most one of Data or Clone must be specified. If neither are provided, the generated
- resource will be created with default data only.
- x-kubernetes-preserve-unknown-fields: true
generateExisting:
description: |-
GenerateExisting controls whether to trigger the rule in existing resources
diff --git a/docs/user/crd/index.html b/docs/user/crd/index.html
index b9c8a7774f47..faea1f31dd83 100644
--- a/docs/user/crd/index.html
+++ b/docs/user/crd/index.html
@@ -664,6 +664,7 @@ AnyAllConditions
(Appears on:
Attestation,
+ForEachGeneration,
ForEachMutation,
ForEachValidation)
@@ -1200,7 +1201,7 @@ CloneFrom
(Appears on:
-Generation)
+GeneratePatterns)
CloneFrom provides the location of the source resource used to generate target resources.
@@ -1453,6 +1454,7 @@
ContextEntry
(Appears on:
+ForEachGeneration,
ForEachMutation,
ForEachValidation,
Rule,
@@ -1645,6 +1647,79 @@
FailurePolicyType
FailurePolicyType specifies a failure policy that defines how unrecognized errors from the admission endpoint are handled.
+ForEachGeneration
+
+
+(Appears on:
+Generation)
+
+
+
+
+
+
+Field |
+Description |
+
+
+
+
+
+list
+
+string
+
+ |
+
+ List specifies a JMESPath expression that results in one or more elements
+to which the validation logic is applied.
+ |
+
+
+
+context
+
+
+[]ContextEntry
+
+
+ |
+
+(Optional)
+ Context defines variables and data sources that can be used during rule execution.
+ |
+
+
+
+preconditions
+
+
+AnyAllConditions
+
+
+ |
+
+(Optional)
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+set of conditions. The declaration can contain nested any or all statements.
+See: https://kyverno.io/docs/writing-policies/preconditions/
+ |
+
+
+
+GeneratePatterns
+
+
+GeneratePatterns
+
+
+ |
+
+ |
+
+
+
+
ForEachMutation
@@ -1976,6 +2051,85 @@
ForeachOrder
ForeachOrder specifies the iteration order in foreach statements.
+GeneratePatterns
+
+
+(Appears on:
+ForEachGeneration,
+Generation)
+
+
+
+
+
+
+Field |
+Description |
+
+
+
+
+
+ResourceSpec
+
+
+ResourceSpec
+
+
+ |
+
+ ResourceSpec contains information to select the resource.
+ |
+
+
+
+data
+
+
+Kubernetes apiextensions/v1.JSON
+
+
+ |
+
+(Optional)
+ Data provides the resource declaration used to populate each generated resource.
+At most one of Data or Clone must be specified. If neither are provided, the generated
+resource will be created with default data only.
+ |
+
+
+
+clone
+
+
+CloneFrom
+
+
+ |
+
+(Optional)
+ Clone specifies the source resource used to populate each generated resource.
+At most one of Data or Clone can be specified. If neither are provided, the generated
+resource will be created with default data only.
+ |
+
+
+
+cloneList
+
+
+CloneList
+
+
+ |
+
+(Optional)
+ CloneList specifies the list of source resource used to populate each generated resource.
+ |
+
+
+
+
GenerateType
(string
alias)
@@ -2013,19 +2167,6 @@
Generation
-ResourceSpec
-
-
-ResourceSpec
-
-
- |
-
- ResourceSpec contains information to select the resource.
- |
-
-
-
synchronize
bool
@@ -2056,48 +2197,29 @@ Generation
|
-data
-
-
-Kubernetes apiextensions/v1.JSON
-
-
- |
-
-(Optional)
- Data provides the resource declaration used to populate each generated resource.
-At most one of Data or Clone must be specified. If neither are provided, the generated
-resource will be created with default data only.
- |
-
-
-
-clone
+GeneratePatterns
-
-CloneFrom
+
+GeneratePatterns
|
(Optional)
- Clone specifies the source resource used to populate each generated resource.
-At most one of Data or Clone can be specified. If neither are provided, the generated
-resource will be created with default data only.
|
-cloneList
+foreach
-
-CloneList
+
+[]ForEachGeneration
|
(Optional)
- CloneList specifies the list of source resource used to populate each generated resource.
+ForEach applies generate rules to a list of sub-elements by creating a context for each entry in the list and looping over it to apply the specified logic.
|
@@ -3577,7 +3699,7 @@ ResourceSpec
(Appears on:
-Generation,
+GeneratePatterns,
TargetResourceSpec,
UpdateRequestSpec,
UpdateRequestStatus,
diff --git a/docs/user/crd/kyverno.v1.html b/docs/user/crd/kyverno.v1.html
index a49032595cdc..eb5e4619341e 100644
--- a/docs/user/crd/kyverno.v1.html
+++ b/docs/user/crd/kyverno.v1.html
@@ -1332,6 +1332,7 @@
AnyAllConditions
(Appears in:
Attestation,
+ ForEachGeneration,
ForEachMutation,
ForEachValidation)
@@ -2454,7 +2455,7 @@ CloneFrom
(Appears in:
- Generation)
+ GeneratePatterns)
@@ -2977,6 +2978,7 @@ ContextEntry
(Appears in:
+ ForEachGeneration,
ForEachMutation,
ForEachValidation,
Rule,
@@ -3379,6 +3381,161 @@
FailurePolicyType
+ ForEachGeneration
+
+
+
+
+ (Appears in:
+ Generation)
+
+
+
+
+
+
+
+
+
+ Field |
+ Description |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ list
+
+ *
+
+
+
+
+
+
+ string
+
+
+ |
+
+
+
+ List specifies a JMESPath expression that results in one or more elements
+to which the validation logic is applied.
+
+
+
+
+
+ |
+
+
+
+
+
+
+ context
+
+
+
+
+
+
+
+ []ContextEntry
+
+
+
+ |
+
+
+
+ Context defines variables and data sources that can be used during rule execution.
+
+
+
+
+
+ |
+
+
+
+
+
+
+ preconditions
+
+
+
+
+
+
+
+ AnyAllConditions
+
+
+
+ |
+
+
+
+ AnyAllConditions are used to determine if a policy rule should be applied by evaluating a
+set of conditions. The declaration can contain nested any or all statements.
+See: https://kyverno.io/docs/writing-policies/preconditions/
+
+
+
+
+
+ |
+
+
+
+
+
+
+ GeneratePatterns
+
+ *
+
+
+
+
+
+
+
+ GeneratePatterns
+
+
+
+ |
+
+
+
+
+
+
+
+
+ |
+
+
+
+
+
+
+
+
+
ForEachMutation
@@ -4036,18 +4193,18 @@ ForeachOrder
- Generation
+ GeneratePatterns
(Appears in:
- Rule)
+ ForEachGeneration,
+ Generation)
- Generation defines how new resources should be created and managed.
-
+
@@ -4069,22 +4226,25 @@ Generation
- generateExisting
+ | ResourceSpec
+
+ *
- bool
+
+ ResourceSpec
+
|
- GenerateExisting controls whether to trigger the rule in existing resources
-If is set to "true" the rule will be triggered and applied to existing matched resources.
+ ResourceSpec contains information to select the resource.
@@ -4097,17 +4257,44 @@ Generation
- ResourceSpec
+ | data
- *
+
+
+
+
+
+ k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1.JSON
+
+
+ |
+
+
+
+ Data provides the resource declaration used to populate each generated resource.
+At most one of Data or Clone must be specified. If neither are provided, the generated
+resource will be created with default data only.
+
+
+
+
+
+ |
+
+
+
+
+
+
+ clone
-
- ResourceSpec
+
+ CloneFrom
@@ -4115,7 +4302,9 @@ Generation
- ResourceSpec contains information to select the resource.
+ Clone specifies the source resource used to populate each generated resource.
+At most one of Data or Clone can be specified. If neither are provided, the generated
+resource will be created with default data only.
@@ -4128,7 +4317,72 @@ Generation
- synchronize
+ | cloneList
+
+
+
+
+
+
+
+ CloneList
+
+
+
+ |
+
+
+
+ CloneList specifies the list of source resource used to populate each generated resource.
+
+
+
+
+
+ |
+
+
+
+
+
+
+ | | |
+
+
+ Generation
+
+
+
+
+ (Appears in:
+ Rule)
+
+
+
+ Generation defines how new resources should be created and managed.
+
+
+
+
+
+
+ Field |
+ Description |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ generateExisting
@@ -4142,10 +4396,8 @@ Generation
- Synchronize controls if generated resources should be kept in-sync with their source resource.
-If Synchronize is set to "true" changes to generated resources will be overwritten with resource
-data from Data or the resource specified in the Clone declaration.
-Optional. Defaults to "false" if not specified.
+ GenerateExisting controls whether to trigger the rule in existing resources
+If is set to "true" the rule will be triggered and applied to existing matched resources.
@@ -4158,7 +4410,7 @@ Generation
- orphanDownstreamOnPolicyDelete
+ | synchronize
@@ -4172,10 +4424,10 @@ Generation
- OrphanDownstreamOnPolicyDelete controls whether generated resources should be deleted when the rule that generated
-them is deleted with synchronization enabled. This option is only applicable to generate rules of the data type.
-See https://kyverno.io/docs/writing-policies/generate/#data-examples.
-Defaults to "false" if not specified.
+ Synchronize controls if generated resources should be kept in-sync with their source resource.
+If Synchronize is set to "true" changes to generated resources will be overwritten with resource
+data from Data or the resource specified in the Clone declaration.
+Optional. Defaults to "false" if not specified.
@@ -4188,23 +4440,24 @@ Generation
- data
+ | orphanDownstreamOnPolicyDelete
- k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1.JSON
+ bool
|
- Data provides the resource declaration used to populate each generated resource.
-At most one of Data or Clone must be specified. If neither are provided, the generated
-resource will be created with default data only.
+ OrphanDownstreamOnPolicyDelete controls whether generated resources should be deleted when the rule that generated
+them is deleted with synchronization enabled. This option is only applicable to generate rules of the data type.
+See https://kyverno.io/docs/writing-policies/generate/#data-examples.
+Defaults to "false" if not specified.
@@ -4217,15 +4470,15 @@ Generation
- clone
+ | GeneratePatterns
-
- CloneFrom
+
+ GeneratePatterns
@@ -4233,10 +4486,7 @@ Generation
- Clone specifies the source resource used to populate each generated resource.
-At most one of Data or Clone can be specified. If neither are provided, the generated
-resource will be created with default data only.
-
+
@@ -4248,15 +4498,15 @@ Generation
- cloneList
+ | foreach
-
- CloneList
+
+ []ForEachGeneration
@@ -4264,7 +4514,7 @@ Generation
- CloneList specifies the list of source resource used to populate each generated resource.
+ ForEach applies generate rules to a list of sub-elements by creating a context for each entry in the list and looping over it to apply the specified logic.
@@ -7080,7 +7330,7 @@ ResourceSpec
(Appears in:
- Generation,
+ GeneratePatterns,
TargetResourceSpec)
diff --git a/pkg/background/generate/clone.go b/pkg/background/generate/clone.go
index fbfe04f54ff6..76235fdc975f 100644
--- a/pkg/background/generate/clone.go
+++ b/pkg/background/generate/clone.go
@@ -13,15 +13,14 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
-func manageClone(log logr.Logger, target, sourceSpec kyvernov1.ResourceSpec, severSideApply bool, rule kyvernov1.Rule, client dclient.Interface) generateResponse {
+func manageClone(log logr.Logger, target, sourceSpec kyvernov1.ResourceSpec, severSideApply bool, pattern kyvernov1.GeneratePatterns, client dclient.Interface) generateResponse {
source := sourceSpec
- clone := rule.Generation
- if clone.Clone.Name != "" {
+ if pattern.Clone.Name != "" {
source = kyvernov1.ResourceSpec{
APIVersion: target.GetAPIVersion(),
Kind: target.GetKind(),
- Namespace: clone.Clone.Namespace,
- Name: clone.Clone.Name,
+ Namespace: pattern.Clone.Namespace,
+ Name: pattern.Clone.Name,
}
}
@@ -80,14 +79,13 @@ func manageClone(log logr.Logger, target, sourceSpec kyvernov1.ResourceSpec, sev
return newCreateGenerateResponse(sourceObjCopy.UnstructuredContent(), target, nil)
}
-func manageCloneList(log logr.Logger, targetNamespace string, severSideApply bool, rule kyvernov1.Rule, client dclient.Interface) []generateResponse {
+func manageCloneList(log logr.Logger, targetNamespace string, severSideApply bool, pattern kyvernov1.GeneratePatterns, client dclient.Interface) []generateResponse {
var responses []generateResponse
- cloneList := rule.Generation.CloneList
- sourceNamespace := cloneList.Namespace
- kinds := cloneList.Kinds
+ sourceNamespace := pattern.CloneList.Namespace
+ kinds := pattern.CloneList.Kinds
for _, kind := range kinds {
apiVersion, kind := kubeutils.GetKindFromGVK(kind)
- sources, err := client.ListResource(context.TODO(), apiVersion, kind, sourceNamespace, cloneList.Selector)
+ sources, err := client.ListResource(context.TODO(), apiVersion, kind, sourceNamespace, pattern.CloneList.Selector)
if err != nil {
responses = append(responses,
newSkipGenerateResponse(
@@ -101,13 +99,13 @@ func manageCloneList(log logr.Logger, targetNamespace string, severSideApply boo
for _, source := range sources.Items {
target := newResourceSpec(source.GetAPIVersion(), source.GetKind(), targetNamespace, source.GetName())
- if (cloneList.Kinds != nil) && (source.GetNamespace() == target.GetNamespace()) {
+ if (pattern.CloneList.Kinds != nil) && (source.GetNamespace() == target.GetNamespace()) {
log.V(4).Info("skip resource self-clone")
responses = append(responses, newSkipGenerateResponse(nil, target, nil))
continue
}
responses = append(responses,
- manageClone(log, target, newResourceSpec(source.GetAPIVersion(), source.GetKind(), source.GetNamespace(), source.GetName()), severSideApply, rule, client))
+ manageClone(log, target, newResourceSpec(source.GetAPIVersion(), source.GetKind(), source.GetNamespace(), source.GetName()), severSideApply, pattern, client))
}
}
return responses
diff --git a/pkg/background/generate/controller.go b/pkg/background/generate/controller.go
index 24fcdff799d4..6694c6ec20c7 100644
--- a/pkg/background/generate/controller.go
+++ b/pkg/background/generate/controller.go
@@ -10,6 +10,7 @@ import (
"time"
"github.com/go-logr/logr"
+ gojmespath "github.com/kyverno/go-jmespath"
kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1"
kyvernov2 "github.com/kyverno/kyverno/api/kyverno/v2"
"github.com/kyverno/kyverno/pkg/background/common"
@@ -21,7 +22,6 @@ import (
"github.com/kyverno/kyverno/pkg/engine"
engineapi "github.com/kyverno/kyverno/pkg/engine/api"
"github.com/kyverno/kyverno/pkg/engine/jmespath"
- "github.com/kyverno/kyverno/pkg/engine/variables"
regex "github.com/kyverno/kyverno/pkg/engine/variables/regex"
"github.com/kyverno/kyverno/pkg/event"
admissionutils "github.com/kyverno/kyverno/pkg/utils/admission"
@@ -278,6 +278,7 @@ func (c *GenerateController) ApplyGeneratePolicy(log logr.Logger, policyContext
ruleNameToProcessingTime := make(map[string]time.Duration)
applyRules := policy.GetSpec().GetApplyRules()
applyCount := 0
+ log = log.WithValues("policy", policy.GetName(), "trigger", resource.GetNamespace()+"/"+resource.GetName())
for _, rule := range policy.GetSpec().Rules {
var err error
@@ -310,21 +311,26 @@ func (c *GenerateController) ApplyGeneratePolicy(log logr.Logger, policyContext
break
}
logger := log.WithValues("rule", rule.Name)
- // add configmap json data to context
- if err := c.engine.ContextLoader(policy, rule)(context.TODO(), rule.Context, policyContext.JSONContext()); err != nil {
- log.Error(err, "cannot add configmaps to context")
- return nil, err
+ contextLoader := c.engine.ContextLoader(policy, rule)
+ if err := contextLoader(context.TODO(), rule.Context, policyContext.JSONContext()); err != nil {
+ if _, ok := err.(gojmespath.NotFoundError); ok {
+ logger.V(3).Info("failed to load rule level context", "reason", err.Error())
+ } else {
+ logger.Error(err, "failed to load rule level context")
+ }
+ return nil, fmt.Errorf("failed to load rule level context: %v", err)
}
- if rule, err = variables.SubstituteAllInRule(log, policyContext.JSONContext(), rule); err != nil {
- log.Error(err, "variable substitution failed for rule", "rule", rule.Name)
- return nil, err
+ if rule.Generation.ForEachGeneration != nil {
+ g := newForeachGenerator(c.client, logger, policyContext, policy, rule, rule.Context, rule.GetAnyAllConditions(), policyContext.NewResource(), rule.Generation.ForEachGeneration, contextLoader)
+ genResource, err = g.generateForeach()
+ } else {
+ g := newGenerator(c.client, logger, policyContext, policy, rule, rule.Context, rule.GetAnyAllConditions(), policyContext.NewResource(), rule.Generation.GeneratePatterns, contextLoader)
+ genResource, err = g.generate()
}
- g := newGenerator(c.client, logger, policy, rule, resource)
- genResource, err = g.generate()
if err != nil {
- log.Error(err, "failed to apply generate rule", "policy", policy.GetName(), "rule", rule.Name, "resource", resource.GetName())
+ log.Error(err, "failed to apply generate rule")
return nil, err
}
ruleNameToProcessingTime[rule.Name] = time.Since(startTime)
diff --git a/pkg/background/generate/generator.go b/pkg/background/generate/generator.go
index 53dbcc231df1..acde93fc7977 100644
--- a/pkg/background/generate/generator.go
+++ b/pkg/background/generate/generator.go
@@ -2,31 +2,83 @@ package generate
import (
"context"
+ "fmt"
"github.com/go-logr/logr"
+ gojmespath "github.com/kyverno/go-jmespath"
kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1"
"github.com/kyverno/kyverno/pkg/background/common"
"github.com/kyverno/kyverno/pkg/clients/dclient"
+ engineapi "github.com/kyverno/kyverno/pkg/engine/api"
+ engineutils "github.com/kyverno/kyverno/pkg/engine/utils"
"github.com/kyverno/kyverno/pkg/engine/validate"
+ "github.com/kyverno/kyverno/pkg/engine/variables"
+ "go.uber.org/multierr"
apierrors "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
)
type generator struct {
- client dclient.Interface
- logger logr.Logger
- policy kyvernov1.PolicyInterface
- rule kyvernov1.Rule
- trigger unstructured.Unstructured
+ client dclient.Interface
+ logger logr.Logger
+ policyContext engineapi.PolicyContext
+ policy kyvernov1.PolicyInterface
+ rule kyvernov1.Rule
+ contextEntries []kyvernov1.ContextEntry
+ anyAllConditions any
+ trigger unstructured.Unstructured
+ forEach []kyvernov1.ForEachGeneration
+ pattern kyvernov1.GeneratePatterns
+ contextLoader engineapi.EngineContextLoader
}
-func newGenerator(client dclient.Interface, logger logr.Logger, policy kyvernov1.PolicyInterface, rule kyvernov1.Rule, trigger unstructured.Unstructured) *generator {
+func newGenerator(client dclient.Interface,
+ logger logr.Logger,
+ policyContext engineapi.PolicyContext,
+ policy kyvernov1.PolicyInterface,
+ rule kyvernov1.Rule,
+ contextEntries []kyvernov1.ContextEntry,
+ anyAllConditions any,
+ trigger unstructured.Unstructured,
+ pattern kyvernov1.GeneratePatterns,
+ contextLoader engineapi.EngineContextLoader,
+) *generator {
return &generator{
- client: client,
- logger: logger,
- policy: policy,
- rule: rule,
- trigger: trigger,
+ client: client,
+ logger: logger,
+ policyContext: policyContext,
+ policy: policy,
+ rule: rule,
+ contextEntries: contextEntries,
+ anyAllConditions: anyAllConditions,
+ trigger: trigger,
+ pattern: pattern,
+ contextLoader: contextLoader,
+ }
+}
+
+func newForeachGenerator(client dclient.Interface,
+ logger logr.Logger,
+ policyContext engineapi.PolicyContext,
+ policy kyvernov1.PolicyInterface,
+ rule kyvernov1.Rule,
+ contextEntries []kyvernov1.ContextEntry,
+ anyAllConditions any,
+ trigger unstructured.Unstructured,
+ forEach []kyvernov1.ForEachGeneration,
+ contextLoader engineapi.EngineContextLoader,
+) *generator {
+ return &generator{
+ client: client,
+ logger: logger,
+ policyContext: policyContext,
+ policy: policy,
+ rule: rule,
+ contextEntries: contextEntries,
+ anyAllConditions: anyAllConditions,
+ trigger: trigger,
+ forEach: forEach,
+ contextLoader: contextLoader,
}
}
@@ -35,16 +87,41 @@ func (g *generator) generate() ([]kyvernov1.ResourceSpec, error) {
var err error
var newGenResources []kyvernov1.ResourceSpec
- target := g.rule.Generation.ResourceSpec
+ if err := g.loadContext(context.TODO()); err != nil {
+ return newGenResources, fmt.Errorf("failed to load context: %v", err)
+ }
+
+ typeConditions, err := engineutils.TransformConditions(g.anyAllConditions)
+ if err != nil {
+ return newGenResources, fmt.Errorf("failed to parse preconditions: %v", err)
+ }
+
+ preconditionsPassed, msg, err := variables.EvaluateConditions(g.logger, g.policyContext.JSONContext(), typeConditions)
+ if err != nil {
+ return newGenResources, fmt.Errorf("failed to evaluate preconditions: %v", err)
+ }
+
+ if !preconditionsPassed {
+ g.logger.V(2).Info("preconditions not met", "msg", msg)
+ return newGenResources, nil
+ }
+
+ pattern, err := variables.SubstituteAllInType(g.logger, g.policyContext.JSONContext(), &g.pattern)
+ if err != nil {
+ g.logger.Error(err, "variable substitution failed for rule", "rule", g.rule.Name)
+ return nil, err
+ }
+
+ target := pattern.ResourceSpec
logger := g.logger.WithValues("target", target.String())
- if g.rule.Generation.Clone.Name != "" {
- resp := manageClone(logger.WithValues("type", "clone"), target, kyvernov1.ResourceSpec{}, g.policy.GetSpec().UseServerSideApply, g.rule, g.client)
+ if pattern.Clone.Name != "" {
+ resp := manageClone(logger.WithValues("type", "clone"), target, kyvernov1.ResourceSpec{}, g.policy.GetSpec().UseServerSideApply, *pattern, g.client)
responses = append(responses, resp)
- } else if len(g.rule.Generation.CloneList.Kinds) != 0 {
- responses = manageCloneList(logger.WithValues("type", "cloneList"), target.GetNamespace(), g.policy.GetSpec().UseServerSideApply, g.rule, g.client)
+ } else if len(pattern.CloneList.Kinds) != 0 {
+ responses = manageCloneList(logger.WithValues("type", "cloneList"), target.GetNamespace(), g.policy.GetSpec().UseServerSideApply, *pattern, g.client)
} else {
- resp := manageData(logger.WithValues("type", "data"), target, g.rule.Generation.RawData, g.rule.Generation.Synchronize, g.client)
+ resp := manageData(logger.WithValues("type", "data"), target, pattern.RawData, g.rule.Generation.Synchronize, g.client)
responses = append(responses, resp)
}
@@ -138,3 +215,76 @@ func (g *generator) generate() ([]kyvernov1.ResourceSpec, error) {
}
return newGenResources, nil
}
+
+func (g *generator) generateForeach() ([]kyvernov1.ResourceSpec, error) {
+ var errors []error
+ var genResources []kyvernov1.ResourceSpec
+
+ for i, foreach := range g.forEach {
+ elements, err := engineutils.EvaluateList(foreach.List, g.policyContext.JSONContext())
+ if err != nil {
+ errors = append(errors, fmt.Errorf("failed to evaluate %v foreach list: %v", i, err))
+ continue
+ }
+ gen, err := g.generateElements(foreach, elements, nil)
+ if err != nil {
+ errors = append(errors, fmt.Errorf("failed to process %v foreach in rule %s: %v", i, g.rule.Name, err))
+ }
+ if gen != nil {
+ genResources = append(genResources, gen...)
+ }
+ }
+ return genResources, multierr.Combine(errors...)
+}
+
+func (g *generator) generateElements(foreach kyvernov1.ForEachGeneration, elements []interface{}, elementScope *bool) ([]kyvernov1.ResourceSpec, error) {
+ var errors []error
+ var genResources []kyvernov1.ResourceSpec
+ g.policyContext.JSONContext().Checkpoint()
+ defer g.policyContext.JSONContext().Restore()
+
+ for index, element := range elements {
+ if element == nil {
+ continue
+ }
+
+ g.policyContext.JSONContext().Reset()
+ policyContext := g.policyContext.Copy()
+ if err := engineutils.AddElementToContext(policyContext, element, index, 0, elementScope); err != nil {
+ g.logger.Error(err, "")
+ errors = append(errors, fmt.Errorf("failed to add %v element to context: %v", index, err))
+ continue
+ }
+
+ gen, err := newGenerator(g.client,
+ g.logger,
+ policyContext,
+ g.policy,
+ g.rule,
+ foreach.Context,
+ foreach.AnyAllConditions,
+ g.trigger,
+ foreach.GeneratePatterns,
+ g.contextLoader).
+ generate()
+ if err != nil {
+ errors = append(errors, fmt.Errorf("failed to process %v element: %v", index, err))
+ }
+ if gen != nil {
+ genResources = append(genResources, gen...)
+ }
+ }
+ return genResources, multierr.Combine(errors...)
+}
+
+func (g *generator) loadContext(ctx context.Context) error {
+ if err := g.contextLoader(ctx, g.contextEntries, g.policyContext.JSONContext()); err != nil {
+ if _, ok := err.(gojmespath.NotFoundError); ok {
+ g.logger.V(3).Info("failed to load context", "reason", err.Error())
+ } else {
+ g.logger.Error(err, "failed to load context")
+ }
+ return err
+ }
+ return nil
+}
diff --git a/pkg/client/applyconfigurations/kyverno/v1/foreachgeneration.go b/pkg/client/applyconfigurations/kyverno/v1/foreachgeneration.go
new file mode 100644
index 000000000000..bf95c9a5e7cf
--- /dev/null
+++ b/pkg/client/applyconfigurations/kyverno/v1/foreachgeneration.go
@@ -0,0 +1,152 @@
+/*
+Copyright The Kubernetes Authors.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+// Code generated by applyconfiguration-gen. DO NOT EDIT.
+
+package v1
+
+import (
+ apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
+ types "k8s.io/apimachinery/pkg/types"
+)
+
+// ForEachGenerationApplyConfiguration represents an declarative configuration of the ForEachGeneration type for use
+// with apply.
+type ForEachGenerationApplyConfiguration struct {
+ List *string `json:"list,omitempty"`
+ Context []ContextEntryApplyConfiguration `json:"context,omitempty"`
+ AnyAllConditions *AnyAllConditionsApplyConfiguration `json:"preconditions,omitempty"`
+ *GeneratePatternsApplyConfiguration `json:"GeneratePatterns,omitempty"`
+}
+
+// ForEachGenerationApplyConfiguration constructs an declarative configuration of the ForEachGeneration type for use with
+// apply.
+func ForEachGeneration() *ForEachGenerationApplyConfiguration {
+ return &ForEachGenerationApplyConfiguration{}
+}
+
+// WithList sets the List field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the List field is set to the value of the last call.
+func (b *ForEachGenerationApplyConfiguration) WithList(value string) *ForEachGenerationApplyConfiguration {
+ b.List = &value
+ return b
+}
+
+// WithContext adds the given value to the Context field in the declarative configuration
+// and returns the receiver, so that objects can be build by chaining "With" function invocations.
+// If called multiple times, values provided by each call will be appended to the Context field.
+func (b *ForEachGenerationApplyConfiguration) WithContext(values ...*ContextEntryApplyConfiguration) *ForEachGenerationApplyConfiguration {
+ for i := range values {
+ if values[i] == nil {
+ panic("nil value passed to WithContext")
+ }
+ b.Context = append(b.Context, *values[i])
+ }
+ return b
+}
+
+// WithAnyAllConditions sets the AnyAllConditions field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the AnyAllConditions field is set to the value of the last call.
+func (b *ForEachGenerationApplyConfiguration) WithAnyAllConditions(value *AnyAllConditionsApplyConfiguration) *ForEachGenerationApplyConfiguration {
+ b.AnyAllConditions = value
+ return b
+}
+
+// WithAPIVersion sets the APIVersion field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the APIVersion field is set to the value of the last call.
+func (b *ForEachGenerationApplyConfiguration) WithAPIVersion(value string) *ForEachGenerationApplyConfiguration {
+ b.ensureResourceSpecApplyConfigurationExists()
+ b.APIVersion = &value
+ return b
+}
+
+// WithKind sets the Kind field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the Kind field is set to the value of the last call.
+func (b *ForEachGenerationApplyConfiguration) WithKind(value string) *ForEachGenerationApplyConfiguration {
+ b.ensureResourceSpecApplyConfigurationExists()
+ b.Kind = &value
+ return b
+}
+
+// WithNamespace sets the Namespace field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the Namespace field is set to the value of the last call.
+func (b *ForEachGenerationApplyConfiguration) WithNamespace(value string) *ForEachGenerationApplyConfiguration {
+ b.ensureResourceSpecApplyConfigurationExists()
+ b.Namespace = &value
+ return b
+}
+
+// WithName sets the Name field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the Name field is set to the value of the last call.
+func (b *ForEachGenerationApplyConfiguration) WithName(value string) *ForEachGenerationApplyConfiguration {
+ b.ensureResourceSpecApplyConfigurationExists()
+ b.Name = &value
+ return b
+}
+
+// WithUID sets the UID field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the UID field is set to the value of the last call.
+func (b *ForEachGenerationApplyConfiguration) WithUID(value types.UID) *ForEachGenerationApplyConfiguration {
+ b.ensureResourceSpecApplyConfigurationExists()
+ b.UID = &value
+ return b
+}
+
+func (b *ForEachGenerationApplyConfiguration) ensureResourceSpecApplyConfigurationExists() {
+ if b.ResourceSpecApplyConfiguration == nil {
+ b.ResourceSpecApplyConfiguration = &ResourceSpecApplyConfiguration{}
+ }
+}
+
+// WithRawData sets the RawData field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the RawData field is set to the value of the last call.
+func (b *ForEachGenerationApplyConfiguration) WithRawData(value apiextensionsv1.JSON) *ForEachGenerationApplyConfiguration {
+ b.ensureGeneratePatternsApplyConfigurationExists()
+ b.RawData = &value
+ return b
+}
+
+// WithClone sets the Clone field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the Clone field is set to the value of the last call.
+func (b *ForEachGenerationApplyConfiguration) WithClone(value *CloneFromApplyConfiguration) *ForEachGenerationApplyConfiguration {
+ b.ensureGeneratePatternsApplyConfigurationExists()
+ b.Clone = value
+ return b
+}
+
+// WithCloneList sets the CloneList field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the CloneList field is set to the value of the last call.
+func (b *ForEachGenerationApplyConfiguration) WithCloneList(value *CloneListApplyConfiguration) *ForEachGenerationApplyConfiguration {
+ b.ensureGeneratePatternsApplyConfigurationExists()
+ b.CloneList = value
+ return b
+}
+
+func (b *ForEachGenerationApplyConfiguration) ensureGeneratePatternsApplyConfigurationExists() {
+ if b.GeneratePatternsApplyConfiguration == nil {
+ b.GeneratePatternsApplyConfiguration = &GeneratePatternsApplyConfiguration{}
+ }
+}
diff --git a/pkg/client/applyconfigurations/kyverno/v1/generatepatterns.go b/pkg/client/applyconfigurations/kyverno/v1/generatepatterns.go
new file mode 100644
index 000000000000..22f856cdea54
--- /dev/null
+++ b/pkg/client/applyconfigurations/kyverno/v1/generatepatterns.go
@@ -0,0 +1,114 @@
+/*
+Copyright The Kubernetes Authors.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+// Code generated by applyconfiguration-gen. DO NOT EDIT.
+
+package v1
+
+import (
+ apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
+ types "k8s.io/apimachinery/pkg/types"
+)
+
+// GeneratePatternsApplyConfiguration represents an declarative configuration of the GeneratePatterns type for use
+// with apply.
+type GeneratePatternsApplyConfiguration struct {
+ *ResourceSpecApplyConfiguration `json:"ResourceSpec,omitempty"`
+ RawData *apiextensionsv1.JSON `json:"data,omitempty"`
+ Clone *CloneFromApplyConfiguration `json:"clone,omitempty"`
+ CloneList *CloneListApplyConfiguration `json:"cloneList,omitempty"`
+}
+
+// GeneratePatternsApplyConfiguration constructs an declarative configuration of the GeneratePatterns type for use with
+// apply.
+func GeneratePatterns() *GeneratePatternsApplyConfiguration {
+ return &GeneratePatternsApplyConfiguration{}
+}
+
+// WithAPIVersion sets the APIVersion field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the APIVersion field is set to the value of the last call.
+func (b *GeneratePatternsApplyConfiguration) WithAPIVersion(value string) *GeneratePatternsApplyConfiguration {
+ b.ensureResourceSpecApplyConfigurationExists()
+ b.APIVersion = &value
+ return b
+}
+
+// WithKind sets the Kind field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the Kind field is set to the value of the last call.
+func (b *GeneratePatternsApplyConfiguration) WithKind(value string) *GeneratePatternsApplyConfiguration {
+ b.ensureResourceSpecApplyConfigurationExists()
+ b.Kind = &value
+ return b
+}
+
+// WithNamespace sets the Namespace field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the Namespace field is set to the value of the last call.
+func (b *GeneratePatternsApplyConfiguration) WithNamespace(value string) *GeneratePatternsApplyConfiguration {
+ b.ensureResourceSpecApplyConfigurationExists()
+ b.Namespace = &value
+ return b
+}
+
+// WithName sets the Name field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the Name field is set to the value of the last call.
+func (b *GeneratePatternsApplyConfiguration) WithName(value string) *GeneratePatternsApplyConfiguration {
+ b.ensureResourceSpecApplyConfigurationExists()
+ b.Name = &value
+ return b
+}
+
+// WithUID sets the UID field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the UID field is set to the value of the last call.
+func (b *GeneratePatternsApplyConfiguration) WithUID(value types.UID) *GeneratePatternsApplyConfiguration {
+ b.ensureResourceSpecApplyConfigurationExists()
+ b.UID = &value
+ return b
+}
+
+func (b *GeneratePatternsApplyConfiguration) ensureResourceSpecApplyConfigurationExists() {
+ if b.ResourceSpecApplyConfiguration == nil {
+ b.ResourceSpecApplyConfiguration = &ResourceSpecApplyConfiguration{}
+ }
+}
+
+// WithRawData sets the RawData field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the RawData field is set to the value of the last call.
+func (b *GeneratePatternsApplyConfiguration) WithRawData(value apiextensionsv1.JSON) *GeneratePatternsApplyConfiguration {
+ b.RawData = &value
+ return b
+}
+
+// WithClone sets the Clone field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the Clone field is set to the value of the last call.
+func (b *GeneratePatternsApplyConfiguration) WithClone(value *CloneFromApplyConfiguration) *GeneratePatternsApplyConfiguration {
+ b.Clone = value
+ return b
+}
+
+// WithCloneList sets the CloneList field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the CloneList field is set to the value of the last call.
+func (b *GeneratePatternsApplyConfiguration) WithCloneList(value *CloneListApplyConfiguration) *GeneratePatternsApplyConfiguration {
+ b.CloneList = value
+ return b
+}
diff --git a/pkg/client/applyconfigurations/kyverno/v1/generation.go b/pkg/client/applyconfigurations/kyverno/v1/generation.go
index 86c234baa390..3c0ac06b8aa8 100644
--- a/pkg/client/applyconfigurations/kyverno/v1/generation.go
+++ b/pkg/client/applyconfigurations/kyverno/v1/generation.go
@@ -26,13 +26,11 @@ import (
// GenerationApplyConfiguration represents an declarative configuration of the Generation type for use
// with apply.
type GenerationApplyConfiguration struct {
- GenerateExisting *bool `json:"generateExisting,omitempty"`
- *ResourceSpecApplyConfiguration `json:"ResourceSpec,omitempty"`
- Synchronize *bool `json:"synchronize,omitempty"`
- OrphanDownstreamOnPolicyDelete *bool `json:"orphanDownstreamOnPolicyDelete,omitempty"`
- RawData *apiextensionsv1.JSON `json:"data,omitempty"`
- Clone *CloneFromApplyConfiguration `json:"clone,omitempty"`
- CloneList *CloneListApplyConfiguration `json:"cloneList,omitempty"`
+ GenerateExisting *bool `json:"generateExisting,omitempty"`
+ Synchronize *bool `json:"synchronize,omitempty"`
+ OrphanDownstreamOnPolicyDelete *bool `json:"orphanDownstreamOnPolicyDelete,omitempty"`
+ *GeneratePatternsApplyConfiguration `json:"GeneratePatterns,omitempty"`
+ ForEachGeneration []ForEachGenerationApplyConfiguration `json:"foreach,omitempty"`
}
// GenerationApplyConfiguration constructs an declarative configuration of the Generation type for use with
@@ -49,6 +47,22 @@ func (b *GenerationApplyConfiguration) WithGenerateExisting(value bool) *Generat
return b
}
+// WithSynchronize sets the Synchronize field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the Synchronize field is set to the value of the last call.
+func (b *GenerationApplyConfiguration) WithSynchronize(value bool) *GenerationApplyConfiguration {
+ b.Synchronize = &value
+ return b
+}
+
+// WithOrphanDownstreamOnPolicyDelete sets the OrphanDownstreamOnPolicyDelete field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the OrphanDownstreamOnPolicyDelete field is set to the value of the last call.
+func (b *GenerationApplyConfiguration) WithOrphanDownstreamOnPolicyDelete(value bool) *GenerationApplyConfiguration {
+ b.OrphanDownstreamOnPolicyDelete = &value
+ return b
+}
+
// WithAPIVersion sets the APIVersion field in the declarative configuration to the given value
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
// If called multiple times, the APIVersion field is set to the value of the last call.
@@ -100,26 +114,11 @@ func (b *GenerationApplyConfiguration) ensureResourceSpecApplyConfigurationExist
}
}
-// WithSynchronize sets the Synchronize field in the declarative configuration to the given value
-// and returns the receiver, so that objects can be built by chaining "With" function invocations.
-// If called multiple times, the Synchronize field is set to the value of the last call.
-func (b *GenerationApplyConfiguration) WithSynchronize(value bool) *GenerationApplyConfiguration {
- b.Synchronize = &value
- return b
-}
-
-// WithOrphanDownstreamOnPolicyDelete sets the OrphanDownstreamOnPolicyDelete field in the declarative configuration to the given value
-// and returns the receiver, so that objects can be built by chaining "With" function invocations.
-// If called multiple times, the OrphanDownstreamOnPolicyDelete field is set to the value of the last call.
-func (b *GenerationApplyConfiguration) WithOrphanDownstreamOnPolicyDelete(value bool) *GenerationApplyConfiguration {
- b.OrphanDownstreamOnPolicyDelete = &value
- return b
-}
-
// WithRawData sets the RawData field in the declarative configuration to the given value
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
// If called multiple times, the RawData field is set to the value of the last call.
func (b *GenerationApplyConfiguration) WithRawData(value apiextensionsv1.JSON) *GenerationApplyConfiguration {
+ b.ensureGeneratePatternsApplyConfigurationExists()
b.RawData = &value
return b
}
@@ -128,6 +127,7 @@ func (b *GenerationApplyConfiguration) WithRawData(value apiextensionsv1.JSON) *
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
// If called multiple times, the Clone field is set to the value of the last call.
func (b *GenerationApplyConfiguration) WithClone(value *CloneFromApplyConfiguration) *GenerationApplyConfiguration {
+ b.ensureGeneratePatternsApplyConfigurationExists()
b.Clone = value
return b
}
@@ -136,6 +136,26 @@ func (b *GenerationApplyConfiguration) WithClone(value *CloneFromApplyConfigurat
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
// If called multiple times, the CloneList field is set to the value of the last call.
func (b *GenerationApplyConfiguration) WithCloneList(value *CloneListApplyConfiguration) *GenerationApplyConfiguration {
+ b.ensureGeneratePatternsApplyConfigurationExists()
b.CloneList = value
return b
}
+
+func (b *GenerationApplyConfiguration) ensureGeneratePatternsApplyConfigurationExists() {
+ if b.GeneratePatternsApplyConfiguration == nil {
+ b.GeneratePatternsApplyConfiguration = &GeneratePatternsApplyConfiguration{}
+ }
+}
+
+// WithForEachGeneration adds the given value to the ForEachGeneration field in the declarative configuration
+// and returns the receiver, so that objects can be build by chaining "With" function invocations.
+// If called multiple times, values provided by each call will be appended to the ForEachGeneration field.
+func (b *GenerationApplyConfiguration) WithForEachGeneration(values ...*ForEachGenerationApplyConfiguration) *GenerationApplyConfiguration {
+ for i := range values {
+ if values[i] == nil {
+ panic("nil value passed to WithForEachGeneration")
+ }
+ b.ForEachGeneration = append(b.ForEachGeneration, *values[i])
+ }
+ return b
+}
diff --git a/pkg/client/applyconfigurations/utils.go b/pkg/client/applyconfigurations/utils.go
index 576c6649694f..51aec8e6ef49 100644
--- a/pkg/client/applyconfigurations/utils.go
+++ b/pkg/client/applyconfigurations/utils.go
@@ -77,10 +77,14 @@ func ForKind(kind schema.GroupVersionKind) interface{} {
return &kyvernov1.DenyApplyConfiguration{}
case v1.SchemeGroupVersion.WithKind("DryRunOption"):
return &kyvernov1.DryRunOptionApplyConfiguration{}
+ case v1.SchemeGroupVersion.WithKind("ForEachGeneration"):
+ return &kyvernov1.ForEachGenerationApplyConfiguration{}
case v1.SchemeGroupVersion.WithKind("ForEachMutation"):
return &kyvernov1.ForEachMutationApplyConfiguration{}
case v1.SchemeGroupVersion.WithKind("ForEachValidation"):
return &kyvernov1.ForEachValidationApplyConfiguration{}
+ case v1.SchemeGroupVersion.WithKind("GeneratePatterns"):
+ return &kyvernov1.GeneratePatternsApplyConfiguration{}
case v1.SchemeGroupVersion.WithKind("Generation"):
return &kyvernov1.GenerationApplyConfiguration{}
case v1.SchemeGroupVersion.WithKind("GlobalContextEntryReference"):
diff --git a/pkg/engine/api/engine.go b/pkg/engine/api/engine.go
index 219098154224..87dcfebef309 100644
--- a/pkg/engine/api/engine.go
+++ b/pkg/engine/api/engine.go
@@ -7,7 +7,7 @@ import (
enginecontext "github.com/kyverno/kyverno/pkg/engine/context"
)
-// EngineContextLoader provides a function to load context entries from the various clients initialised with the engine ones
+// EngineContextLoader provides a function to load context entries from the various clients initialized with the engine ones
type EngineContextLoader = func(ctx context.Context, contextEntries []kyvernov1.ContextEntry, jsonContext enginecontext.Interface) error
// EngineContextLoaderFactory provides an EngineContextLoader given a policy and rule name
diff --git a/pkg/policy/generate.go b/pkg/policy/generate.go
index 40c62c921e20..154a99409f8a 100644
--- a/pkg/policy/generate.go
+++ b/pkg/policy/generate.go
@@ -36,18 +36,25 @@ func (pc *policyController) handleGenerate(policyKey string, policy kyvernov1.Po
func (pc *policyController) syncDataPolicyChanges(policy kyvernov1.PolicyInterface, deleteDownstream bool) error {
var errs []error
+ var err error
ur := newGenerateUR(policy)
for _, rule := range policy.GetSpec().Rules {
generate := rule.Generation
if !generate.Synchronize {
continue
}
- if generate.GetData() == nil {
- continue
+ if generate.GetData() != nil {
+ if ur, err = pc.buildUrForDataRuleChanges(policy, ur, rule.Name, generate.GeneratePatterns, deleteDownstream, false); err != nil {
+ errs = append(errs, err)
+ }
}
- var err error
- if ur, err = pc.buildUrForDataRuleChanges(policy, ur, rule, deleteDownstream, false); err != nil {
- errs = append(errs, err)
+
+ for _, foreach := range generate.ForEachGeneration {
+ if foreach.GetData() != nil {
+ if ur, err = pc.buildUrForDataRuleChanges(policy, ur, rule.Name, foreach.GeneratePatterns, deleteDownstream, false); err != nil {
+ errs = append(errs, err)
+ }
+ }
}
}
@@ -137,6 +144,7 @@ func (pc *policyController) handleGenerateForExisting(policy kyvernov1.PolicyInt
func (pc *policyController) createURForDownstreamDeletion(policy kyvernov1.PolicyInterface) error {
var errs []error
+ var err error
rules := autogen.ComputeRules(policy, "")
ur := newGenerateUR(policy)
for _, r := range rules {
@@ -144,14 +152,23 @@ func (pc *policyController) createURForDownstreamDeletion(policy kyvernov1.Polic
if !generate.Synchronize {
continue
}
- if generate.GetData() == nil {
- continue
+
+ sync, orphanDownstreamOnPolicyDelete := r.GetSyncAndOrphanDownstream()
+ if generate.GetData() != nil {
+ if sync && (generate.GetType() == kyvernov1.Data) && !orphanDownstreamOnPolicyDelete {
+ if ur, err = pc.buildUrForDataRuleChanges(policy, ur, r.Name, r.Generation.GeneratePatterns, true, true); err != nil {
+ errs = append(errs, err)
+ }
+ }
}
- generateType, sync, orphanDownstreamOnPolicyDelete := r.GetTypeAndSyncAndOrphanDownstream()
- if sync && (generateType == kyvernov1.Data) && !orphanDownstreamOnPolicyDelete {
- var err error
- if ur, err = pc.buildUrForDataRuleChanges(policy, ur, r, true, true); err != nil {
- errs = append(errs, err)
+
+ for _, foreach := range generate.ForEachGeneration {
+ if foreach.GetData() != nil {
+ if sync && (foreach.GetType() == kyvernov1.Data) && !orphanDownstreamOnPolicyDelete {
+ if ur, err = pc.buildUrForDataRuleChanges(policy, ur, r.Name, foreach.GeneratePatterns, true, true); err != nil {
+ errs = append(errs, err)
+ }
+ }
}
}
}
@@ -177,15 +194,15 @@ func (pc *policyController) createURForDownstreamDeletion(policy kyvernov1.Polic
return multierr.Combine(errs...)
}
-func (pc *policyController) buildUrForDataRuleChanges(policy kyvernov1.PolicyInterface, ur *kyvernov2.UpdateRequest, rule kyvernov1.Rule, deleteDownstream, policyDeletion bool) (*kyvernov2.UpdateRequest, error) {
+func (pc *policyController) buildUrForDataRuleChanges(policy kyvernov1.PolicyInterface, ur *kyvernov2.UpdateRequest, ruleName string, pattern kyvernov1.GeneratePatterns, deleteDownstream, policyDeletion bool) (*kyvernov2.UpdateRequest, error) {
labels := map[string]string{
common.GeneratePolicyLabel: policy.GetName(),
common.GeneratePolicyNamespaceLabel: policy.GetNamespace(),
- common.GenerateRuleLabel: rule.Name,
+ common.GenerateRuleLabel: ruleName,
kyverno.LabelAppManagedBy: kyverno.ValueKyvernoApp,
}
- downstreams, err := common.FindDownstream(pc.client, rule.Generation.GetAPIVersion(), rule.Generation.GetKind(), labels)
+ downstreams, err := common.FindDownstream(pc.client, pattern.GetAPIVersion(), pattern.GetKind(), labels)
if err != nil {
return ur, err
}
@@ -198,7 +215,7 @@ func (pc *policyController) buildUrForDataRuleChanges(policy kyvernov1.PolicyInt
for _, downstream := range downstreams.Items {
labels := downstream.GetLabels()
trigger := generateutils.TriggerFromLabels(labels)
- addRuleContext(ur, rule.Name, trigger, deleteDownstream)
+ addRuleContext(ur, ruleName, trigger, deleteDownstream)
if policyDeletion {
addGeneratedResources(ur, downstream)
}
diff --git a/pkg/policy/generate/validate.go b/pkg/policy/generate/validate.go
index 8bf0bc341dff..0048ae9573b4 100644
--- a/pkg/policy/generate/validate.go
+++ b/pkg/policy/generate/validate.go
@@ -41,35 +41,6 @@ func NewGenerateFactory(client dclient.Interface, rule kyvernov1.Generation, use
// Validate validates the 'generate' rule
func (g *Generate) Validate(ctx context.Context) (string, error) {
rule := g.rule
- if rule.GetData() != nil && rule.Clone != (kyvernov1.CloneFrom{}) {
- return "", fmt.Errorf("only one of data or clone can be specified")
- }
-
- if rule.Clone != (kyvernov1.CloneFrom{}) && len(rule.CloneList.Kinds) != 0 {
- return "", fmt.Errorf("only one of clone or cloneList can be specified")
- }
-
- apiVersion, kind, name, namespace := rule.ResourceSpec.GetAPIVersion(), rule.ResourceSpec.GetKind(), rule.ResourceSpec.GetName(), rule.ResourceSpec.GetNamespace()
-
- if len(rule.CloneList.Kinds) == 0 {
- if name == "" {
- return "name", fmt.Errorf("name cannot be empty")
- }
- if kind == "" {
- return "kind", fmt.Errorf("kind cannot be empty")
- }
- if apiVersion == "" {
- return "apiVersion", fmt.Errorf("apiVersion cannot be empty")
- }
- } else {
- if name != "" {
- return "name", fmt.Errorf("with cloneList, generate.name. should not be specified")
- }
- if kind != "" {
- return "kind", fmt.Errorf("with cloneList, generate.kind. should not be specified")
- }
- }
-
if rule.CloneList.Selector != nil {
if wildcard.ContainsWildcard(rule.CloneList.Selector.String()) {
return "selector", fmt.Errorf("wildcard characters `*/?` not supported")
@@ -89,22 +60,33 @@ func (g *Generate) Validate(ctx context.Context) (string, error) {
// instructions to modify the RBAC for kyverno are mentioned at https://github.com/kyverno/kyverno/blob/master/documentation/installation.md
// - operations required: create/update/delete/get
// If kind and namespace contain variables, then we cannot resolve then so we skip the processing
- if len(rule.CloneList.Kinds) != 0 {
- for _, kind = range rule.CloneList.Kinds {
- gvk, sub := parseCloneKind(kind)
- if err := g.canIGenerate(ctx, gvk, namespace, sub); err != nil {
- return "", err
+ if rule.ForEachGeneration != nil {
+ for _, forEach := range rule.ForEachGeneration {
+ if err := g.canIGeneratePatterns(ctx, forEach.GeneratePatterns); err != nil {
+ return "foreach", err
}
}
} else {
- k, sub := kubeutils.SplitSubresource(kind)
- if err := g.canIGenerate(ctx, strings.Join([]string{apiVersion, k}, "/"), namespace, sub); err != nil {
+ if err := g.canIGeneratePatterns(ctx, rule.GeneratePatterns); err != nil {
return "", err
}
}
return "", nil
}
+func (g *Generate) canIGeneratePatterns(ctx context.Context, generate kyvernov1.GeneratePatterns) error {
+ if len(generate.CloneList.Kinds) != 0 {
+ for _, kind := range generate.CloneList.Kinds {
+ gvk, sub := parseCloneKind(kind)
+ return g.canIGenerate(ctx, gvk, generate.Namespace, sub)
+ }
+ } else {
+ k, sub := kubeutils.SplitSubresource(generate.Kind)
+ return g.canIGenerate(ctx, strings.Join([]string{generate.APIVersion, k}, "/"), generate.Namespace, sub)
+ }
+ return nil
+}
+
// canIGenerate returns a error if kyverno cannot perform operations
func (g *Generate) canIGenerate(ctx context.Context, gvk, namespace, subresource string) error {
// Skip if there is variable defined
diff --git a/pkg/policy/generate/validate_test.go b/pkg/policy/generate/validate_test.go
index 3b2a13a2d555..b466d6b83552 100644
--- a/pkg/policy/generate/validate_test.go
+++ b/pkg/policy/generate/validate_test.go
@@ -9,37 +9,6 @@ import (
"gotest.tools/assert"
)
-func Test_Validate_Generate(t *testing.T) {
- rawGenerate := []byte(`
- {
- "kind": "NetworkPolicy",
- "name": "defaultnetworkpolicy",
- "data": {
- "spec": {
- "podSelector": {},
- "policyTypes": [
- "Ingress",
- "Egress"
- ],
- "ingress": [
- {}
- ],
- "egress": [
- {}
- ]
- }
- }
- }`)
-
- var genRule kyverno.Generation
- err := json.Unmarshal(rawGenerate, &genRule)
- assert.NilError(t, err)
- checker := NewFakeGenerate(genRule)
- _, err = checker.Validate(context.TODO())
- t.Log(err)
- assert.Assert(t, err != nil)
-}
-
func Test_Validate_Generate_HasAnchors(t *testing.T) {
var err error
rawGenerate := []byte(`
diff --git a/pkg/validation/policy/validate.go b/pkg/validation/policy/validate.go
index f1ea3b423997..1c232d47b387 100644
--- a/pkg/validation/policy/validate.go
+++ b/pkg/validation/policy/validate.go
@@ -726,6 +726,9 @@ func buildContext(rule *kyvernov1.Rule, background bool, target bool) *enginecon
for _, fe := range rule.Mutation.Targets {
addContextVariables(fe.Context, ctx)
}
+ for _, fe := range rule.Generation.ForEachGeneration {
+ addContextVariables(fe.Context, ctx)
+ }
return ctx
}
diff --git a/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/1-1-policy.yaml b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/1-1-policy.yaml
new file mode 100755
index 000000000000..3d490f6b5030
--- /dev/null
+++ b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/1-1-policy.yaml
@@ -0,0 +1,52 @@
+apiVersion: kyverno.io/v1
+kind: ClusterPolicy
+metadata:
+ name: zk-kafka-address-foreach
+spec:
+ rules:
+ - match:
+ any:
+ - resources:
+ kinds:
+ - ConfigMap
+ name: k-kafka-address
+ context:
+ - name: configmapns
+ variable:
+ jmesPath: request.object.metadata.namespace
+ preconditions:
+ any:
+ - key: '{{configmapns}}'
+ operator: Equals
+ value: 'default'
+ generate:
+ generateExisting: false
+ synchronize: true
+ foreach:
+ - list: request.object.data.namespaces | split(@, ',')
+ context:
+ - name: ns
+ variable:
+ jmesPath: element
+ preconditions:
+ any:
+ - key: '{{ ns }}'
+ operator: AnyIn
+ value:
+ - foreach-ns-1
+ apiVersion: networking.k8s.io/v1
+ kind: NetworkPolicy
+ name: my-networkpolicy-{{ elementIndex }}-{{ ns }}
+ namespace: '{{ ns }}'
+ data:
+ metadata:
+ labels:
+ request.namespace: '{{ request.object.metadata.name }}'
+ element.namespace: '{{ ns }}'
+ element.name: '{{ element }}'
+ elementIndex: '{{ elementIndex }}'
+ spec:
+ podSelector: {}
+ policyTypes:
+ - Ingress
+ - Egress
diff --git a/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/1-2-policy-assert.yaml b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/1-2-policy-assert.yaml
new file mode 100755
index 000000000000..a8dfacb167ae
--- /dev/null
+++ b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/1-2-policy-assert.yaml
@@ -0,0 +1,9 @@
+apiVersion: kyverno.io/v1
+kind: ClusterPolicy
+metadata:
+ name: zk-kafka-address-foreach
+status:
+ conditions:
+ - reason: Succeeded
+ status: "True"
+ type: Ready
diff --git a/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/2-1-trigger.yaml b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/2-1-trigger.yaml
new file mode 100755
index 000000000000..188f6d9333df
--- /dev/null
+++ b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/2-1-trigger.yaml
@@ -0,0 +1,17 @@
+apiVersion: v1
+kind: Namespace
+metadata:
+ name: foreach-ns-1
+---
+apiVersion: v1
+kind: Namespace
+metadata:
+ name: foreach-ns-2
+---
+kind: ConfigMap
+apiVersion: v1
+metadata:
+ name: default-deny
+ namespace: default
+data:
+ namespaces: foreach-ns-1,foreach-ns-2
\ No newline at end of file
diff --git a/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/2-2-netpol.yaml b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/2-2-netpol.yaml
new file mode 100755
index 000000000000..16d01b7c41af
--- /dev/null
+++ b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/2-2-netpol.yaml
@@ -0,0 +1,10 @@
+apiVersion: networking.k8s.io/v1
+kind: NetworkPolicy
+metadata:
+ name: my-networkpolicy-0-foreach-ns-1
+ namespace: foreach-ns-1
+spec:
+ podSelector: {}
+ policyTypes:
+ - Ingress
+ - Egress
\ No newline at end of file
diff --git a/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/2-3-netpol.yaml b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/2-3-netpol.yaml
new file mode 100644
index 000000000000..e42f6cff0487
--- /dev/null
+++ b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/2-3-netpol.yaml
@@ -0,0 +1,10 @@
+apiVersion: networking.k8s.io/v1
+kind: NetworkPolicy
+metadata:
+ name: my-networkpolicy-0-foreach-ns-2
+ namespace: foreach-ns-2
+spec:
+ podSelector: {}
+ policyTypes:
+ - Ingress
+ - Egress
\ No newline at end of file
diff --git a/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/README.md b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/README.md
new file mode 100644
index 000000000000..4ae03168089d
--- /dev/null
+++ b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/README.md
@@ -0,0 +1,11 @@
+## Description
+
+This is a basic creation test for a "generate foreach data" policy with preconditions and context variables. It checks that the basic functionality works whereby installation of the policy causes correct evaluation of the match and preconditions blocks.
+
+## Expected Behavior
+
+If only the `foreach-ns-1` Namespace receives a generated NetworkPolicy, the test passes. If either it does not or `foreach-ns-2` receives a NetworkPolicy, the test fails.
+
+## Reference Issue(s)
+
+https://github.com/kyverno/kyverno/issues/3542
\ No newline at end of file
diff --git a/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/chainsaw-test.yaml b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/chainsaw-test.yaml
new file mode 100755
index 000000000000..40d3ab931c9e
--- /dev/null
+++ b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-create/chainsaw-test.yaml
@@ -0,0 +1,21 @@
+apiVersion: chainsaw.kyverno.io/v1alpha1
+kind: Test
+metadata:
+ creationTimestamp: null
+ name: cpol-data-sync-create
+spec:
+ steps:
+ - name: step-01
+ try:
+ - apply:
+ file: 1-1-policy.yaml
+ - assert:
+ file: 1-2-policy-assert.yaml
+ - name: step-02
+ try:
+ - apply:
+ file: 2-1-trigger.yaml
+ - assert:
+ file: 2-2-netpol.yaml
+ - error:
+ file: 2-3-netpol.yaml
diff --git a/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/1-1-policy.yaml b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/1-1-policy.yaml
new file mode 100755
index 000000000000..cf05235118b3
--- /dev/null
+++ b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/1-1-policy.yaml
@@ -0,0 +1,52 @@
+apiVersion: kyverno.io/v1
+kind: ClusterPolicy
+metadata:
+ name: foreach-cpol-data-sync-delete-policy
+spec:
+ rules:
+ - match:
+ any:
+ - resources:
+ kinds:
+ - ConfigMap
+ name: k-kafka-address
+ context:
+ - name: configmapns
+ variable:
+ jmesPath: request.object.metadata.namespace
+ preconditions:
+ any:
+ - key: '{{configmapns}}'
+ operator: Equals
+ value: 'default'
+ generate:
+ generateExisting: false
+ synchronize: true
+ foreach:
+ - list: request.object.data.namespaces | split(@, ',')
+ context:
+ - name: ns
+ variable:
+ jmesPath: element
+ preconditions:
+ any:
+ - key: '{{ ns }}'
+ operator: AnyIn
+ value:
+ - foreach-ns-1
+ apiVersion: networking.k8s.io/v1
+ kind: NetworkPolicy
+ name: my-networkpolicy-{{ elementIndex }}-{{ ns }}
+ namespace: '{{ ns }}'
+ data:
+ metadata:
+ labels:
+ request.namespace: '{{ request.object.metadata.name }}'
+ element.namespace: '{{ ns }}'
+ element.name: '{{ element }}'
+ elementIndex: '{{ elementIndex }}'
+ spec:
+ podSelector: {}
+ policyTypes:
+ - Ingress
+ - Egress
diff --git a/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/1-2-policy-assert.yaml b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/1-2-policy-assert.yaml
new file mode 100755
index 000000000000..94cb8d023622
--- /dev/null
+++ b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/1-2-policy-assert.yaml
@@ -0,0 +1,9 @@
+apiVersion: kyverno.io/v1
+kind: ClusterPolicy
+metadata:
+ name: foreach-cpol-data-sync-delete-policy
+status:
+ conditions:
+ - reason: Succeeded
+ status: "True"
+ type: Ready
diff --git a/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/2-1-trigger.yaml b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/2-1-trigger.yaml
new file mode 100755
index 000000000000..9e231301f5a2
--- /dev/null
+++ b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/2-1-trigger.yaml
@@ -0,0 +1,12 @@
+apiVersion: v1
+kind: Namespace
+metadata:
+ name: foreach-ns-1
+---
+kind: ConfigMap
+apiVersion: v1
+metadata:
+ name: default-deny
+ namespace: default
+data:
+ namespaces: foreach-ns-1
\ No newline at end of file
diff --git a/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/2-2-netpol.yaml b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/2-2-netpol.yaml
new file mode 100755
index 000000000000..16d01b7c41af
--- /dev/null
+++ b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/2-2-netpol.yaml
@@ -0,0 +1,10 @@
+apiVersion: networking.k8s.io/v1
+kind: NetworkPolicy
+metadata:
+ name: my-networkpolicy-0-foreach-ns-1
+ namespace: foreach-ns-1
+spec:
+ podSelector: {}
+ policyTypes:
+ - Ingress
+ - Egress
\ No newline at end of file
diff --git a/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/2-3-netpol.yaml b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/2-3-netpol.yaml
new file mode 100644
index 000000000000..e42f6cff0487
--- /dev/null
+++ b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/2-3-netpol.yaml
@@ -0,0 +1,10 @@
+apiVersion: networking.k8s.io/v1
+kind: NetworkPolicy
+metadata:
+ name: my-networkpolicy-0-foreach-ns-2
+ namespace: foreach-ns-2
+spec:
+ podSelector: {}
+ policyTypes:
+ - Ingress
+ - Egress
\ No newline at end of file
diff --git a/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/README.md b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/README.md
new file mode 100644
index 000000000000..c2435d4a2903
--- /dev/null
+++ b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/README.md
@@ -0,0 +1,11 @@
+## Description
+
+This test checks the synchronize behavior for a "generate foreach data" policy.
+
+## Expected Behavior
+
+The test passes if the generated NetworkPolicy in `foreach-ns-1` Namespace is deleted upon policy deletion.
+
+## Reference Issue(s)
+
+https://github.com/kyverno/kyverno/issues/3542
\ No newline at end of file
diff --git a/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/chainsaw-test.yaml b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/chainsaw-test.yaml
new file mode 100755
index 000000000000..12eedb812ef5
--- /dev/null
+++ b/test/conformance/chainsaw/generate/foreach/clusterpolicy/data/sync/cpol-data-sync-delete-policy/chainsaw-test.yaml
@@ -0,0 +1,28 @@
+apiVersion: chainsaw.kyverno.io/v1alpha1
+kind: Test
+metadata:
+ creationTimestamp: null
+ name: cpol-data-sync-create
+spec:
+ steps:
+ - name: step-01
+ try:
+ - apply:
+ file: 1-1-policy.yaml
+ - assert:
+ file: 1-2-policy-assert.yaml
+ - name: step-02
+ try:
+ - apply:
+ file: 2-1-trigger.yaml
+ - assert:
+ file: 2-2-netpol.yaml
+ - name: step-03
+ try:
+ - delete:
+ ref:
+ apiVersion: kyverno.io/v1
+ kind: ClusterPolicy
+ name: foreach-cpol-data-sync-delete-policy
+ - error:
+ file: 2-2-netpol.yaml
| | | | | | | | |