v1alpha1

package
v0.32.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 16, 2025 License: Apache-2.0 Imports: 11 Imported by: 627

Documentation

Overview

Package v1alpha1 is the v1alpha1 version of the API.

Index

Constants

View Source
const GroupName = "admissionregistration.k8s.io"

GroupName is the group name for this API.

Variables

View Source
var (
	ErrInvalidLengthGenerated        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenerated          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenerated = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	// SchemeBuilder points to a list of functions added to Scheme.
	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)

	// AddToScheme is a common registration function for mapping packaged scoped group & version keys to a scheme.
	AddToScheme = localSchemeBuilder.AddToScheme
)

TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api. localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes.

View Source
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1alpha1"}

SchemeGroupVersion is group version used to register these objects

Functions

func Resource

func Resource(resource string) schema.GroupResource

Resource takes an unqualified resource and returns a Group qualified GroupResource

Types

type ApplyConfiguration added in v0.32.0

type ApplyConfiguration struct {
	// expression will be evaluated by CEL to create an apply configuration.
	// ref: https://github.com/google/cel-spec
	//
	// Apply configurations are declared in CEL using object initialization. For example, this CEL expression
	// returns an apply configuration to set a single field:
	//
	//	Object{
	//	  spec: Object.spec{
	//	    serviceAccountName: "example"
	//	  }
	//	}
	//
	// Apply configurations may not modify atomic structs, maps or arrays due to the risk of accidental deletion of
	// values not included in the apply configuration.
	//
	// CEL expressions have access to the object types needed to create apply configurations:
	//
	// - 'Object' - CEL type of the resource object.
	// - 'Object.<fieldName>' - CEL type of object field (such as 'Object.spec')
	// - 'Object.<fieldName1>.<fieldName2>...<fieldNameN>` - CEL type of nested field (such as 'Object.spec.containers')
	//
	// CEL expressions have access to the contents of the API request, organized into CEL variables as well as some other useful variables:
	//
	// - 'object' - The object from the incoming request. The value is null for DELETE requests.
	// - 'oldObject' - The existing object. The value is null for CREATE requests.
	// - 'request' - Attributes of the API request([ref](/pkg/apis/admission/types.go#AdmissionRequest)).
	// - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind.
	// - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources.
	// - 'variables' - Map of composited variables, from its name to its lazily evaluated value.
	//   For example, a variable named 'foo' can be accessed as 'variables.foo'.
	// - 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.
	//   See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz
	// - 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
	//   request resource.
	//
	// The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
	// object. No other metadata properties are accessible.
	//
	// Only property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible.
	// Required.
	Expression string `json:"expression,omitempty" protobuf:"bytes,1,opt,name=expression"`
}

ApplyConfiguration defines the desired configuration values of an object.

func (*ApplyConfiguration) DeepCopy added in v0.32.0

func (in *ApplyConfiguration) DeepCopy() *ApplyConfiguration

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplyConfiguration.

func (*ApplyConfiguration) DeepCopyInto added in v0.32.0

func (in *ApplyConfiguration) DeepCopyInto(out *ApplyConfiguration)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplyConfiguration) Descriptor added in v0.32.0

func (*ApplyConfiguration) Descriptor() ([]byte, []int)

func (*ApplyConfiguration) Marshal added in v0.32.0

func (m *ApplyConfiguration) Marshal() (dAtA []byte, err error)

func (*ApplyConfiguration) MarshalTo added in v0.32.0

func (m *ApplyConfiguration) MarshalTo(dAtA []byte) (int, error)

func (*ApplyConfiguration) MarshalToSizedBuffer added in v0.32.0

func (m *ApplyConfiguration) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ApplyConfiguration) ProtoMessage added in v0.32.0

func (*ApplyConfiguration) ProtoMessage()

func (*ApplyConfiguration) Reset added in v0.32.0

func (m *ApplyConfiguration) Reset()

func (*ApplyConfiguration) Size added in v0.32.0

func (m *ApplyConfiguration) Size() (n int)

func (*ApplyConfiguration) String added in v0.32.0

func (this *ApplyConfiguration) String() string

func (ApplyConfiguration) SwaggerDoc added in v0.32.0

func (ApplyConfiguration) SwaggerDoc() map[string]string

func (*ApplyConfiguration) Unmarshal added in v0.32.0

func (m *ApplyConfiguration) Unmarshal(dAtA []byte) error

func (*ApplyConfiguration) XXX_DiscardUnknown added in v0.32.0

func (m *ApplyConfiguration) XXX_DiscardUnknown()

func (*ApplyConfiguration) XXX_Marshal added in v0.32.0

func (m *ApplyConfiguration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApplyConfiguration) XXX_Merge added in v0.32.0

func (m *ApplyConfiguration) XXX_Merge(src proto.Message)

func (*ApplyConfiguration) XXX_Size added in v0.32.0

func (m *ApplyConfiguration) XXX_Size() int

func (*ApplyConfiguration) XXX_Unmarshal added in v0.32.0

func (m *ApplyConfiguration) XXX_Unmarshal(b []byte) error

type AuditAnnotation added in v0.27.0

type AuditAnnotation struct {
	// 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.
	Key string `json:"key" protobuf:"bytes,1,opt,name=key"`

	// 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.
	ValueExpression string `json:"valueExpression" protobuf:"bytes,2,opt,name=valueExpression"`
}

AuditAnnotation describes how to produce an audit annotation for an API request.

func (*AuditAnnotation) DeepCopy added in v0.27.0

func (in *AuditAnnotation) DeepCopy() *AuditAnnotation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuditAnnotation.

func (*AuditAnnotation) DeepCopyInto added in v0.27.0

func (in *AuditAnnotation) DeepCopyInto(out *AuditAnnotation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*AuditAnnotation) Descriptor added in v0.27.0

func (*AuditAnnotation) Descriptor() ([]byte, []int)

func (*AuditAnnotation) Marshal added in v0.27.0

func (m *AuditAnnotation) Marshal() (dAtA []byte, err error)

func (*AuditAnnotation) MarshalTo added in v0.27.0

func (m *AuditAnnotation) MarshalTo(dAtA []byte) (int, error)

func (*AuditAnnotation) MarshalToSizedBuffer added in v0.27.0

func (m *AuditAnnotation) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AuditAnnotation) ProtoMessage added in v0.27.0

func (*AuditAnnotation) ProtoMessage()

func (*AuditAnnotation) Reset added in v0.27.0

func (m *AuditAnnotation) Reset()

func (*AuditAnnotation) Size added in v0.27.0

func (m *AuditAnnotation) Size() (n int)

func (*AuditAnnotation) String added in v0.27.0

func (this *AuditAnnotation) String() string

func (AuditAnnotation) SwaggerDoc added in v0.27.0

func (AuditAnnotation) SwaggerDoc() map[string]string

func (*AuditAnnotation) Unmarshal added in v0.27.0

func (m *AuditAnnotation) Unmarshal(dAtA []byte) error

func (*AuditAnnotation) XXX_DiscardUnknown added in v0.27.0

func (m *AuditAnnotation) XXX_DiscardUnknown()

func (*AuditAnnotation) XXX_Marshal added in v0.27.0

func (m *AuditAnnotation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AuditAnnotation) XXX_Merge added in v0.27.0

func (m *AuditAnnotation) XXX_Merge(src proto.Message)

func (*AuditAnnotation) XXX_Size added in v0.27.0

func (m *AuditAnnotation) XXX_Size() int

func (*AuditAnnotation) XXX_Unmarshal added in v0.27.0

func (m *AuditAnnotation) XXX_Unmarshal(b []byte) error

type ExpressionWarning added in v0.27.0

type ExpressionWarning struct {
	// The path to the field that refers the expression.
	// For example, the reference to the expression of the first item of
	// validations is "spec.validations[0].expression"
	FieldRef string `json:"fieldRef" protobuf:"bytes,2,opt,name=fieldRef"`
	// The content of type checking information in a human-readable form.
	// Each line of the warning contains the type that the expression is checked
	// against, followed by the type check error from the compiler.
	Warning string `json:"warning" protobuf:"bytes,3,opt,name=warning"`
}

ExpressionWarning is a warning information that targets a specific expression.

func (*ExpressionWarning) DeepCopy added in v0.27.0

func (in *ExpressionWarning) DeepCopy() *ExpressionWarning

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExpressionWarning.

func (*ExpressionWarning) DeepCopyInto added in v0.27.0

func (in *ExpressionWarning) DeepCopyInto(out *ExpressionWarning)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ExpressionWarning) Descriptor added in v0.27.0

func (*ExpressionWarning) Descriptor() ([]byte, []int)

func (*ExpressionWarning) Marshal added in v0.27.0

func (m *ExpressionWarning) Marshal() (dAtA []byte, err error)

func (*ExpressionWarning) MarshalTo added in v0.27.0

func (m *ExpressionWarning) MarshalTo(dAtA []byte) (int, error)

func (*ExpressionWarning) MarshalToSizedBuffer added in v0.27.0

func (m *ExpressionWarning) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ExpressionWarning) ProtoMessage added in v0.27.0

func (*ExpressionWarning) ProtoMessage()

func (*ExpressionWarning) Reset added in v0.27.0

func (m *ExpressionWarning) Reset()

func (*ExpressionWarning) Size added in v0.27.0

func (m *ExpressionWarning) Size() (n int)

func (*ExpressionWarning) String added in v0.27.0

func (this *ExpressionWarning) String() string

func (ExpressionWarning) SwaggerDoc added in v0.27.0

func (ExpressionWarning) SwaggerDoc() map[string]string

func (*ExpressionWarning) Unmarshal added in v0.27.0

func (m *ExpressionWarning) Unmarshal(dAtA []byte) error

func (*ExpressionWarning) XXX_DiscardUnknown added in v0.27.0

func (m *ExpressionWarning) XXX_DiscardUnknown()

func (*ExpressionWarning) XXX_Marshal added in v0.27.0

func (m *ExpressionWarning) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExpressionWarning) XXX_Merge added in v0.27.0

func (m *ExpressionWarning) XXX_Merge(src proto.Message)

func (*ExpressionWarning) XXX_Size added in v0.27.0

func (m *ExpressionWarning) XXX_Size() int

func (*ExpressionWarning) XXX_Unmarshal added in v0.27.0

func (m *ExpressionWarning) XXX_Unmarshal(b []byte) error

type FailurePolicyType

type FailurePolicyType string

FailurePolicyType specifies a failure policy that defines how unrecognized errors from the admission endpoint are handled. +enum

const (
	// Ignore means that an error calling the webhook is ignored.
	Ignore FailurePolicyType = "Ignore"
	// Fail means that an error calling the webhook causes the admission to fail.
	Fail FailurePolicyType = "Fail"
)

type JSONPatch added in v0.32.0

type JSONPatch struct {
	// expression will be evaluated by CEL to create a [JSON patch](https://jsonpatch.com/).
	// ref: https://github.com/google/cel-spec
	//
	// expression must return an array of JSONPatch values.
	//
	// For example, this CEL expression returns a JSON patch to conditionally modify a value:
	//
	//	  [
	//	    JSONPatch{op: "test", path: "/spec/example", value: "Red"},
	//	    JSONPatch{op: "replace", path: "/spec/example", value: "Green"}
	//	  ]
	//
	// To define an object for the patch value, use Object types. For example:
	//
	//	  [
	//	    JSONPatch{
	//	      op: "add",
	//	      path: "/spec/selector",
	//	      value: Object.spec.selector{matchLabels: {"environment": "test"}}
	//	    }
	//	  ]
	//
	// To use strings containing '/' and '~' as JSONPatch path keys, use "jsonpatch.escapeKey". For example:
	//
	//	  [
	//	    JSONPatch{
	//	      op: "add",
	//	      path: "/metadata/labels/" + jsonpatch.escapeKey("example.com/environment"),
	//	      value: "test"
	//	    },
	//	  ]
	//
	// CEL expressions have access to the types needed to create JSON patches and objects:
	//
	// - 'JSONPatch' - CEL type of JSON Patch operations. JSONPatch has the fields 'op', 'from', 'path' and 'value'.
	//   See [JSON patch](https://jsonpatch.com/) for more details. The 'value' field may be set to any of: string,
	//   integer, array, map or object.  If set, the 'path' and 'from' fields must be set to a
	//   [JSON pointer](https://datatracker.ietf.org/doc/html/rfc6901/) string, where the 'jsonpatch.escapeKey()' CEL
	//   function may be used to escape path keys containing '/' and '~'.
	// - 'Object' - CEL type of the resource object.
	// - 'Object.<fieldName>' - CEL type of object field (such as 'Object.spec')
	// - 'Object.<fieldName1>.<fieldName2>...<fieldNameN>` - CEL type of nested field (such as 'Object.spec.containers')
	//
	// CEL expressions have access to the contents of the API request, organized into CEL variables as well as some other useful variables:
	//
	// - 'object' - The object from the incoming request. The value is null for DELETE requests.
	// - 'oldObject' - The existing object. The value is null for CREATE requests.
	// - 'request' - Attributes of the API request([ref](/pkg/apis/admission/types.go#AdmissionRequest)).
	// - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind.
	// - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources.
	// - 'variables' - Map of composited variables, from its name to its lazily evaluated value.
	//   For example, a variable named 'foo' can be accessed as 'variables.foo'.
	// - 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.
	//   See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz
	// - 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
	//   request resource.
	//
	// CEL expressions have access to [Kubernetes CEL function libraries](https://kubernetes.io/docs/reference/using-api/cel/#cel-options-language-features-and-libraries)
	// as well as:
	//
	// - 'jsonpatch.escapeKey' - Performs JSONPatch key escaping. '~' and  '/' are escaped as '~0' and `~1' respectively).
	//
	//
	// Only property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible.
	// Required.
	Expression string `json:"expression,omitempty" protobuf:"bytes,1,opt,name=expression"`
}

JSONPatch defines a JSON Patch.

func (*JSONPatch) DeepCopy added in v0.32.0

func (in *JSONPatch) DeepCopy() *JSONPatch

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JSONPatch.

func (*JSONPatch) DeepCopyInto added in v0.32.0

func (in *JSONPatch) DeepCopyInto(out *JSONPatch)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*JSONPatch) Descriptor added in v0.32.0

func (*JSONPatch) Descriptor() ([]byte, []int)

func (*JSONPatch) Marshal added in v0.32.0

func (m *JSONPatch) Marshal() (dAtA []byte, err error)

func (*JSONPatch) MarshalTo added in v0.32.0

func (m *JSONPatch) MarshalTo(dAtA []byte) (int, error)

func (*JSONPatch) MarshalToSizedBuffer added in v0.32.0

func (m *JSONPatch) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*JSONPatch) ProtoMessage added in v0.32.0

func (*JSONPatch) ProtoMessage()

func (*JSONPatch) Reset added in v0.32.0

func (m *JSONPatch) Reset()

func (*JSONPatch) Size added in v0.32.0

func (m *JSONPatch) Size() (n int)

func (*JSONPatch) String added in v0.32.0

func (this *JSONPatch) String() string

func (JSONPatch) SwaggerDoc added in v0.32.0

func (JSONPatch) SwaggerDoc() map[string]string

func (*JSONPatch) Unmarshal added in v0.32.0

func (m *JSONPatch) Unmarshal(dAtA []byte) error

func (*JSONPatch) XXX_DiscardUnknown added in v0.32.0

func (m *JSONPatch) XXX_DiscardUnknown()

func (*JSONPatch) XXX_Marshal added in v0.32.0

func (m *JSONPatch) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*JSONPatch) XXX_Merge added in v0.32.0

func (m *JSONPatch) XXX_Merge(src proto.Message)

func (*JSONPatch) XXX_Size added in v0.32.0

func (m *JSONPatch) XXX_Size() int

func (*JSONPatch) XXX_Unmarshal added in v0.32.0

func (m *JSONPatch) XXX_Unmarshal(b []byte) error

type MatchCondition added in v0.27.0

type MatchCondition v1.MatchCondition

func (*MatchCondition) DeepCopy added in v0.27.0

func (in *MatchCondition) DeepCopy() *MatchCondition

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MatchCondition.

func (*MatchCondition) DeepCopyInto added in v0.27.0

func (in *MatchCondition) DeepCopyInto(out *MatchCondition)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*MatchCondition) Descriptor added in v0.27.0

func (*MatchCondition) Descriptor() ([]byte, []int)

func (*MatchCondition) Marshal added in v0.27.0

func (m *MatchCondition) Marshal() (dAtA []byte, err error)

func (*MatchCondition) MarshalTo added in v0.27.0

func (m *MatchCondition) MarshalTo(dAtA []byte) (int, error)

func (*MatchCondition) MarshalToSizedBuffer added in v0.27.0

func (m *MatchCondition) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MatchCondition) ProtoMessage added in v0.27.0

func (*MatchCondition) ProtoMessage()

func (*MatchCondition) Reset added in v0.27.0

func (m *MatchCondition) Reset()

func (*MatchCondition) Size added in v0.27.0

func (m *MatchCondition) Size() (n int)

func (*MatchCondition) String added in v0.27.0

func (this *MatchCondition) String() string

func (*MatchCondition) Unmarshal added in v0.27.0

func (m *MatchCondition) Unmarshal(dAtA []byte) error

func (*MatchCondition) XXX_DiscardUnknown added in v0.27.0

func (m *MatchCondition) XXX_DiscardUnknown()

func (*MatchCondition) XXX_Marshal added in v0.27.0

func (m *MatchCondition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MatchCondition) XXX_Merge added in v0.27.0

func (m *MatchCondition) XXX_Merge(src proto.Message)

func (*MatchCondition) XXX_Size added in v0.27.0

func (m *MatchCondition) XXX_Size() int

func (*MatchCondition) XXX_Unmarshal added in v0.27.0

func (m *MatchCondition) XXX_Unmarshal(b []byte) error

type MatchPolicyType

type MatchPolicyType string

MatchPolicyType specifies the type of match policy. +enum

const (
	// Exact means requests should only be sent to the webhook if they exactly match a given rule.
	Exact MatchPolicyType = "Exact"
	// Equivalent means requests should be sent to the webhook if they modify a resource listed in rules via another API group or version.
	Equivalent MatchPolicyType = "Equivalent"
)

type MatchResources

type MatchResources struct {
	// NamespaceSelector decides whether to run the admission control policy on an object based
	// on whether the namespace for that object matches the selector. If the
	// object itself is a namespace, the matching is performed on
	// object.metadata.labels. If the object is another cluster scoped resource,
	// it never skips the policy.
	//
	// For example, to run the webhook on any objects whose namespace is not
	// associated with "runlevel" of "0" or "1";  you will set the selector as
	// follows:
	// "namespaceSelector": {
	//   "matchExpressions": [
	//     {
	//       "key": "runlevel",
	//       "operator": "NotIn",
	//       "values": [
	//         "0",
	//         "1"
	//       ]
	//     }
	//   ]
	// }
	//
	// If instead you want to only run the policy on any objects whose
	// namespace is associated with the "environment" of "prod" or "staging";
	// you will set the selector as follows:
	// "namespaceSelector": {
	//   "matchExpressions": [
	//     {
	//       "key": "environment",
	//       "operator": "In",
	//       "values": [
	//         "prod",
	//         "staging"
	//       ]
	//     }
	//   ]
	// }
	//
	// See
	// https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
	// for more examples of label selectors.
	//
	// Default to the empty LabelSelector, which matches everything.
	// +optional
	NamespaceSelector *metav1.LabelSelector `json:"namespaceSelector,omitempty" protobuf:"bytes,1,opt,name=namespaceSelector"`
	// ObjectSelector decides whether to run the validation based on if the
	// object has matching labels. objectSelector is evaluated against both
	// the oldObject and newObject that would be sent to the cel validation, and
	// is considered to match if either object matches the selector. A null
	// object (oldObject in the case of create, or newObject in the case of
	// delete) or an object that cannot have labels (like a
	// DeploymentRollback or a PodProxyOptions object) is not considered to
	// match.
	// Use the object selector only if the webhook is opt-in, because end
	// users may skip the admission webhook by setting the labels.
	// Default to the empty LabelSelector, which matches everything.
	// +optional
	ObjectSelector *metav1.LabelSelector `json:"objectSelector,omitempty" protobuf:"bytes,2,opt,name=objectSelector"`
	// ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches.
	// The policy cares about an operation if it matches _any_ Rule.
	// +listType=atomic
	// +optional
	ResourceRules []NamedRuleWithOperations `json:"resourceRules,omitempty" protobuf:"bytes,3,rep,name=resourceRules"`
	// ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about.
	// The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
	// +listType=atomic
	// +optional
	ExcludeResourceRules []NamedRuleWithOperations `json:"excludeResourceRules,omitempty" protobuf:"bytes,4,rep,name=excludeResourceRules"`
	// matchPolicy defines how the "MatchResources" list is used to match incoming requests.
	// Allowed values are "Exact" or "Equivalent".
	//
	// - Exact: match a request only if it exactly matches a specified rule.
	// For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
	// but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`,
	// a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy.
	//
	// - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version.
	// For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
	// and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`,
	// a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicy.
	//
	// Defaults to "Equivalent"
	// +optional
	MatchPolicy *MatchPolicyType `json:"matchPolicy,omitempty" protobuf:"bytes,7,opt,name=matchPolicy,casttype=MatchPolicyType"`
}

MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria. The exclude rules take precedence over include rules (if a resource matches both, it is excluded) +structType=atomic

func (*MatchResources) DeepCopy

func (in *MatchResources) DeepCopy() *MatchResources

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MatchResources.

func (*MatchResources) DeepCopyInto

func (in *MatchResources) DeepCopyInto(out *MatchResources)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*MatchResources) Descriptor

func (*MatchResources) Descriptor() ([]byte, []int)

func (*MatchResources) Marshal

func (m *MatchResources) Marshal() (dAtA []byte, err error)

func (*MatchResources) MarshalTo

func (m *MatchResources) MarshalTo(dAtA []byte) (int, error)

func (*MatchResources) MarshalToSizedBuffer

func (m *MatchResources) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MatchResources) ProtoMessage

func (*MatchResources) ProtoMessage()

func (*MatchResources) Reset

func (m *MatchResources) Reset()

func (*MatchResources) Size

func (m *MatchResources) Size() (n int)

func (*MatchResources) String

func (this *MatchResources) String() string

func (MatchResources) SwaggerDoc

func (MatchResources) SwaggerDoc() map[string]string

func (*MatchResources) Unmarshal

func (m *MatchResources) Unmarshal(dAtA []byte) error

func (*MatchResources) XXX_DiscardUnknown

func (m *MatchResources) XXX_DiscardUnknown()

func (*MatchResources) XXX_Marshal

func (m *MatchResources) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MatchResources) XXX_Merge

func (m *MatchResources) XXX_Merge(src proto.Message)

func (*MatchResources) XXX_Size

func (m *MatchResources) XXX_Size() int

func (*MatchResources) XXX_Unmarshal

func (m *MatchResources) XXX_Unmarshal(b []byte) error

type MutatingAdmissionPolicy added in v0.32.0

type MutatingAdmissionPolicy struct {
	metav1.TypeMeta `json:",inline"`
	// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
	// +optional
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
	// Specification of the desired behavior of the MutatingAdmissionPolicy.
	Spec MutatingAdmissionPolicySpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
}

MutatingAdmissionPolicy describes the definition of an admission mutation policy that mutates the object coming into admission chain.

func (*MutatingAdmissionPolicy) APILifecycleDeprecated added in v0.32.0

func (in *MutatingAdmissionPolicy) APILifecycleDeprecated() (major, minor int)

APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or "k8s:prerelease-lifecycle-gen:introduced" plus three minor.

func (*MutatingAdmissionPolicy) APILifecycleIntroduced added in v0.32.0

func (in *MutatingAdmissionPolicy) APILifecycleIntroduced() (major, minor int)

APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.

func (*MutatingAdmissionPolicy) APILifecycleRemoved added in v0.32.0

func (in *MutatingAdmissionPolicy) APILifecycleRemoved() (major, minor int)

APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or "k8s:prerelease-lifecycle-gen:deprecated" plus three minor.

func (*MutatingAdmissionPolicy) DeepCopy added in v0.32.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MutatingAdmissionPolicy.

func (*MutatingAdmissionPolicy) DeepCopyInto added in v0.32.0

func (in *MutatingAdmissionPolicy) DeepCopyInto(out *MutatingAdmissionPolicy)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*MutatingAdmissionPolicy) DeepCopyObject added in v0.32.0

func (in *MutatingAdmissionPolicy) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*MutatingAdmissionPolicy) Descriptor added in v0.32.0

func (*MutatingAdmissionPolicy) Descriptor() ([]byte, []int)

func (*MutatingAdmissionPolicy) Marshal added in v0.32.0

func (m *MutatingAdmissionPolicy) Marshal() (dAtA []byte, err error)

func (*MutatingAdmissionPolicy) MarshalTo added in v0.32.0

func (m *MutatingAdmissionPolicy) MarshalTo(dAtA []byte) (int, error)

func (*MutatingAdmissionPolicy) MarshalToSizedBuffer added in v0.32.0

func (m *MutatingAdmissionPolicy) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MutatingAdmissionPolicy) ProtoMessage added in v0.32.0

func (*MutatingAdmissionPolicy) ProtoMessage()

func (*MutatingAdmissionPolicy) Reset added in v0.32.0

func (m *MutatingAdmissionPolicy) Reset()

func (*MutatingAdmissionPolicy) Size added in v0.32.0

func (m *MutatingAdmissionPolicy) Size() (n int)

func (*MutatingAdmissionPolicy) String added in v0.32.0

func (this *MutatingAdmissionPolicy) String() string

func (MutatingAdmissionPolicy) SwaggerDoc added in v0.32.0

func (MutatingAdmissionPolicy) SwaggerDoc() map[string]string

func (*MutatingAdmissionPolicy) Unmarshal added in v0.32.0

func (m *MutatingAdmissionPolicy) Unmarshal(dAtA []byte) error

func (*MutatingAdmissionPolicy) XXX_DiscardUnknown added in v0.32.0

func (m *MutatingAdmissionPolicy) XXX_DiscardUnknown()

func (*MutatingAdmissionPolicy) XXX_Marshal added in v0.32.0

func (m *MutatingAdmissionPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MutatingAdmissionPolicy) XXX_Merge added in v0.32.0

func (m *MutatingAdmissionPolicy) XXX_Merge(src proto.Message)

func (*MutatingAdmissionPolicy) XXX_Size added in v0.32.0

func (m *MutatingAdmissionPolicy) XXX_Size() int

func (*MutatingAdmissionPolicy) XXX_Unmarshal added in v0.32.0

func (m *MutatingAdmissionPolicy) XXX_Unmarshal(b []byte) error

type MutatingAdmissionPolicyBinding added in v0.32.0

type MutatingAdmissionPolicyBinding struct {
	metav1.TypeMeta `json:",inline"`
	// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
	// +optional
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
	// Specification of the desired behavior of the MutatingAdmissionPolicyBinding.
	Spec MutatingAdmissionPolicyBindingSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
}

MutatingAdmissionPolicyBinding binds the MutatingAdmissionPolicy with parametrized resources. MutatingAdmissionPolicyBinding and the optional parameter resource together define how cluster administrators configure policies for clusters.

For a given admission request, each binding will cause its policy to be evaluated N times, where N is 1 for policies/bindings that don't use params, otherwise N is the number of parameters selected by the binding. Each evaluation is constrained by a [runtime cost budget](https://kubernetes.io/docs/reference/using-api/cel/#runtime-cost-budget).

Adding/removing policies, bindings, or params can not affect whether a given (policy, binding, param) combination is within its own CEL budget.

func (*MutatingAdmissionPolicyBinding) APILifecycleDeprecated added in v0.32.0

func (in *MutatingAdmissionPolicyBinding) APILifecycleDeprecated() (major, minor int)

APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or "k8s:prerelease-lifecycle-gen:introduced" plus three minor.

func (*MutatingAdmissionPolicyBinding) APILifecycleIntroduced added in v0.32.0

func (in *MutatingAdmissionPolicyBinding) APILifecycleIntroduced() (major, minor int)

APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.

func (*MutatingAdmissionPolicyBinding) APILifecycleRemoved added in v0.32.0

func (in *MutatingAdmissionPolicyBinding) APILifecycleRemoved() (major, minor int)

APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or "k8s:prerelease-lifecycle-gen:deprecated" plus three minor.

func (*MutatingAdmissionPolicyBinding) DeepCopy added in v0.32.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MutatingAdmissionPolicyBinding.

func (*MutatingAdmissionPolicyBinding) DeepCopyInto added in v0.32.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*MutatingAdmissionPolicyBinding) DeepCopyObject added in v0.32.0

func (in *MutatingAdmissionPolicyBinding) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*MutatingAdmissionPolicyBinding) Descriptor added in v0.32.0

func (*MutatingAdmissionPolicyBinding) Descriptor() ([]byte, []int)

func (*MutatingAdmissionPolicyBinding) Marshal added in v0.32.0

func (m *MutatingAdmissionPolicyBinding) Marshal() (dAtA []byte, err error)

func (*MutatingAdmissionPolicyBinding) MarshalTo added in v0.32.0

func (m *MutatingAdmissionPolicyBinding) MarshalTo(dAtA []byte) (int, error)

func (*MutatingAdmissionPolicyBinding) MarshalToSizedBuffer added in v0.32.0

func (m *MutatingAdmissionPolicyBinding) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MutatingAdmissionPolicyBinding) ProtoMessage added in v0.32.0

func (*MutatingAdmissionPolicyBinding) ProtoMessage()

func (*MutatingAdmissionPolicyBinding) Reset added in v0.32.0

func (m *MutatingAdmissionPolicyBinding) Reset()

func (*MutatingAdmissionPolicyBinding) Size added in v0.32.0

func (m *MutatingAdmissionPolicyBinding) Size() (n int)

func (*MutatingAdmissionPolicyBinding) String added in v0.32.0

func (this *MutatingAdmissionPolicyBinding) String() string

func (MutatingAdmissionPolicyBinding) SwaggerDoc added in v0.32.0

func (MutatingAdmissionPolicyBinding) SwaggerDoc() map[string]string

func (*MutatingAdmissionPolicyBinding) Unmarshal added in v0.32.0

func (m *MutatingAdmissionPolicyBinding) Unmarshal(dAtA []byte) error

func (*MutatingAdmissionPolicyBinding) XXX_DiscardUnknown added in v0.32.0

func (m *MutatingAdmissionPolicyBinding) XXX_DiscardUnknown()

func (*MutatingAdmissionPolicyBinding) XXX_Marshal added in v0.32.0

func (m *MutatingAdmissionPolicyBinding) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MutatingAdmissionPolicyBinding) XXX_Merge added in v0.32.0

func (m *MutatingAdmissionPolicyBinding) XXX_Merge(src proto.Message)

func (*MutatingAdmissionPolicyBinding) XXX_Size added in v0.32.0

func (m *MutatingAdmissionPolicyBinding) XXX_Size() int

func (*MutatingAdmissionPolicyBinding) XXX_Unmarshal added in v0.32.0

func (m *MutatingAdmissionPolicyBinding) XXX_Unmarshal(b []byte) error

type MutatingAdmissionPolicyBindingList added in v0.32.0

type MutatingAdmissionPolicyBindingList struct {
	metav1.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	// +optional
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
	// List of PolicyBinding.
	Items []MutatingAdmissionPolicyBinding `json:"items" protobuf:"bytes,2,rep,name=items"`
}

MutatingAdmissionPolicyBindingList is a list of MutatingAdmissionPolicyBinding.

func (*MutatingAdmissionPolicyBindingList) APILifecycleDeprecated added in v0.32.0

func (in *MutatingAdmissionPolicyBindingList) APILifecycleDeprecated() (major, minor int)

APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or "k8s:prerelease-lifecycle-gen:introduced" plus three minor.

func (*MutatingAdmissionPolicyBindingList) APILifecycleIntroduced added in v0.32.0

func (in *MutatingAdmissionPolicyBindingList) APILifecycleIntroduced() (major, minor int)

APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.

func (*MutatingAdmissionPolicyBindingList) APILifecycleRemoved added in v0.32.0

func (in *MutatingAdmissionPolicyBindingList) APILifecycleRemoved() (major, minor int)

APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or "k8s:prerelease-lifecycle-gen:deprecated" plus three minor.

func (*MutatingAdmissionPolicyBindingList) DeepCopy added in v0.32.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MutatingAdmissionPolicyBindingList.

func (*MutatingAdmissionPolicyBindingList) DeepCopyInto added in v0.32.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*MutatingAdmissionPolicyBindingList) DeepCopyObject added in v0.32.0

func (in *MutatingAdmissionPolicyBindingList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*MutatingAdmissionPolicyBindingList) Descriptor added in v0.32.0

func (*MutatingAdmissionPolicyBindingList) Descriptor() ([]byte, []int)

func (*MutatingAdmissionPolicyBindingList) Marshal added in v0.32.0

func (m *MutatingAdmissionPolicyBindingList) Marshal() (dAtA []byte, err error)

func (*MutatingAdmissionPolicyBindingList) MarshalTo added in v0.32.0

func (m *MutatingAdmissionPolicyBindingList) MarshalTo(dAtA []byte) (int, error)

func (*MutatingAdmissionPolicyBindingList) MarshalToSizedBuffer added in v0.32.0

func (m *MutatingAdmissionPolicyBindingList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MutatingAdmissionPolicyBindingList) ProtoMessage added in v0.32.0

func (*MutatingAdmissionPolicyBindingList) ProtoMessage()

func (*MutatingAdmissionPolicyBindingList) Reset added in v0.32.0

func (*MutatingAdmissionPolicyBindingList) Size added in v0.32.0

func (*MutatingAdmissionPolicyBindingList) String added in v0.32.0

func (MutatingAdmissionPolicyBindingList) SwaggerDoc added in v0.32.0

func (*MutatingAdmissionPolicyBindingList) Unmarshal added in v0.32.0

func (m *MutatingAdmissionPolicyBindingList) Unmarshal(dAtA []byte) error

func (*MutatingAdmissionPolicyBindingList) XXX_DiscardUnknown added in v0.32.0

func (m *MutatingAdmissionPolicyBindingList) XXX_DiscardUnknown()

func (*MutatingAdmissionPolicyBindingList) XXX_Marshal added in v0.32.0

func (m *MutatingAdmissionPolicyBindingList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MutatingAdmissionPolicyBindingList) XXX_Merge added in v0.32.0

func (*MutatingAdmissionPolicyBindingList) XXX_Size added in v0.32.0

func (*MutatingAdmissionPolicyBindingList) XXX_Unmarshal added in v0.32.0

func (m *MutatingAdmissionPolicyBindingList) XXX_Unmarshal(b []byte) error

type MutatingAdmissionPolicyBindingSpec added in v0.32.0

type MutatingAdmissionPolicyBindingSpec struct {
	// policyName references a MutatingAdmissionPolicy name which the MutatingAdmissionPolicyBinding binds to.
	// If the referenced resource does not exist, this binding is considered invalid and will be ignored
	// Required.
	PolicyName string `json:"policyName,omitempty" protobuf:"bytes,1,rep,name=policyName"`

	// paramRef specifies the parameter resource used to configure the admission control policy.
	// It should point to a resource of the type specified in spec.ParamKind of the bound MutatingAdmissionPolicy.
	// If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the MutatingAdmissionPolicy applied.
	// If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param.
	// +optional
	ParamRef *ParamRef `json:"paramRef,omitempty" protobuf:"bytes,2,rep,name=paramRef"`

	// matchResources limits what resources match this binding and may be mutated by it.
	// Note that if matchResources matches a resource, the resource must also match a policy's matchConstraints and
	// matchConditions before the resource may be mutated.
	// When matchResources is unset, it does not constrain resource matching, and only the policy's matchConstraints
	// and matchConditions must match for the resource to be mutated.
	// Additionally, matchResources.resourceRules are optional and do not constraint matching when unset.
	// Note that this is differs from MutatingAdmissionPolicy matchConstraints, where resourceRules are required.
	// The CREATE, UPDATE and CONNECT operations are allowed.  The DELETE operation may not be matched.
	// '*' matches CREATE, UPDATE and CONNECT.
	// +optional
	MatchResources *MatchResources `json:"matchResources,omitempty" protobuf:"bytes,3,rep,name=matchResources"`
}

MutatingAdmissionPolicyBindingSpec is the specification of the MutatingAdmissionPolicyBinding.

func (*MutatingAdmissionPolicyBindingSpec) DeepCopy added in v0.32.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MutatingAdmissionPolicyBindingSpec.

func (*MutatingAdmissionPolicyBindingSpec) DeepCopyInto added in v0.32.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*MutatingAdmissionPolicyBindingSpec) Descriptor added in v0.32.0

func (*MutatingAdmissionPolicyBindingSpec) Descriptor() ([]byte, []int)

func (*MutatingAdmissionPolicyBindingSpec) Marshal added in v0.32.0

func (m *MutatingAdmissionPolicyBindingSpec) Marshal() (dAtA []byte, err error)

func (*MutatingAdmissionPolicyBindingSpec) MarshalTo added in v0.32.0

func (m *MutatingAdmissionPolicyBindingSpec) MarshalTo(dAtA []byte) (int, error)

func (*MutatingAdmissionPolicyBindingSpec) MarshalToSizedBuffer added in v0.32.0

func (m *MutatingAdmissionPolicyBindingSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MutatingAdmissionPolicyBindingSpec) ProtoMessage added in v0.32.0

func (*MutatingAdmissionPolicyBindingSpec) ProtoMessage()

func (*MutatingAdmissionPolicyBindingSpec) Reset added in v0.32.0

func (*MutatingAdmissionPolicyBindingSpec) Size added in v0.32.0

func (*MutatingAdmissionPolicyBindingSpec) String added in v0.32.0

func (MutatingAdmissionPolicyBindingSpec) SwaggerDoc added in v0.32.0

func (*MutatingAdmissionPolicyBindingSpec) Unmarshal added in v0.32.0

func (m *MutatingAdmissionPolicyBindingSpec) Unmarshal(dAtA []byte) error

func (*MutatingAdmissionPolicyBindingSpec) XXX_DiscardUnknown added in v0.32.0

func (m *MutatingAdmissionPolicyBindingSpec) XXX_DiscardUnknown()

func (*MutatingAdmissionPolicyBindingSpec) XXX_Marshal added in v0.32.0

func (m *MutatingAdmissionPolicyBindingSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MutatingAdmissionPolicyBindingSpec) XXX_Merge added in v0.32.0

func (*MutatingAdmissionPolicyBindingSpec) XXX_Size added in v0.32.0

func (*MutatingAdmissionPolicyBindingSpec) XXX_Unmarshal added in v0.32.0

func (m *MutatingAdmissionPolicyBindingSpec) XXX_Unmarshal(b []byte) error

type MutatingAdmissionPolicyList added in v0.32.0

type MutatingAdmissionPolicyList struct {
	metav1.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	// +optional
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
	// List of ValidatingAdmissionPolicy.
	Items []MutatingAdmissionPolicy `json:"items" protobuf:"bytes,2,rep,name=items"`
}

MutatingAdmissionPolicyList is a list of MutatingAdmissionPolicy.

func (*MutatingAdmissionPolicyList) APILifecycleDeprecated added in v0.32.0

func (in *MutatingAdmissionPolicyList) APILifecycleDeprecated() (major, minor int)

APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or "k8s:prerelease-lifecycle-gen:introduced" plus three minor.

func (*MutatingAdmissionPolicyList) APILifecycleIntroduced added in v0.32.0

func (in *MutatingAdmissionPolicyList) APILifecycleIntroduced() (major, minor int)

APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.

func (*MutatingAdmissionPolicyList) APILifecycleRemoved added in v0.32.0

func (in *MutatingAdmissionPolicyList) APILifecycleRemoved() (major, minor int)

APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or "k8s:prerelease-lifecycle-gen:deprecated" plus three minor.

func (*MutatingAdmissionPolicyList) DeepCopy added in v0.32.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MutatingAdmissionPolicyList.

func (*MutatingAdmissionPolicyList) DeepCopyInto added in v0.32.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*MutatingAdmissionPolicyList) DeepCopyObject added in v0.32.0

func (in *MutatingAdmissionPolicyList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*MutatingAdmissionPolicyList) Descriptor added in v0.32.0

func (*MutatingAdmissionPolicyList) Descriptor() ([]byte, []int)

func (*MutatingAdmissionPolicyList) Marshal added in v0.32.0

func (m *MutatingAdmissionPolicyList) Marshal() (dAtA []byte, err error)

func (*MutatingAdmissionPolicyList) MarshalTo added in v0.32.0

func (m *MutatingAdmissionPolicyList) MarshalTo(dAtA []byte) (int, error)

func (*MutatingAdmissionPolicyList) MarshalToSizedBuffer added in v0.32.0

func (m *MutatingAdmissionPolicyList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MutatingAdmissionPolicyList) ProtoMessage added in v0.32.0

func (*MutatingAdmissionPolicyList) ProtoMessage()

func (*MutatingAdmissionPolicyList) Reset added in v0.32.0

func (m *MutatingAdmissionPolicyList) Reset()

func (*MutatingAdmissionPolicyList) Size added in v0.32.0

func (m *MutatingAdmissionPolicyList) Size() (n int)

func (*MutatingAdmissionPolicyList) String added in v0.32.0

func (this *MutatingAdmissionPolicyList) String() string

func (MutatingAdmissionPolicyList) SwaggerDoc added in v0.32.0

func (MutatingAdmissionPolicyList) SwaggerDoc() map[string]string

func (*MutatingAdmissionPolicyList) Unmarshal added in v0.32.0

func (m *MutatingAdmissionPolicyList) Unmarshal(dAtA []byte) error

func (*MutatingAdmissionPolicyList) XXX_DiscardUnknown added in v0.32.0

func (m *MutatingAdmissionPolicyList) XXX_DiscardUnknown()

func (*MutatingAdmissionPolicyList) XXX_Marshal added in v0.32.0

func (m *MutatingAdmissionPolicyList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MutatingAdmissionPolicyList) XXX_Merge added in v0.32.0

func (m *MutatingAdmissionPolicyList) XXX_Merge(src proto.Message)

func (*MutatingAdmissionPolicyList) XXX_Size added in v0.32.0

func (m *MutatingAdmissionPolicyList) XXX_Size() int

func (*MutatingAdmissionPolicyList) XXX_Unmarshal added in v0.32.0

func (m *MutatingAdmissionPolicyList) XXX_Unmarshal(b []byte) error

type MutatingAdmissionPolicySpec added in v0.32.0

type MutatingAdmissionPolicySpec struct {
	// paramKind specifies the kind of resources used to parameterize this policy.
	// If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions.
	// If paramKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied.
	// If paramKind is specified but paramRef is unset in MutatingAdmissionPolicyBinding, the params variable will be null.
	// +optional
	ParamKind *ParamKind `json:"paramKind,omitempty" protobuf:"bytes,1,rep,name=paramKind"`

	// matchConstraints specifies what resources this policy is designed to validate.
	// The MutatingAdmissionPolicy cares about a request if it matches _all_ Constraints.
	// However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API
	// MutatingAdmissionPolicy cannot match MutatingAdmissionPolicy and MutatingAdmissionPolicyBinding.
	// The CREATE, UPDATE and CONNECT operations are allowed.  The DELETE operation may not be matched.
	// '*' matches CREATE, UPDATE and CONNECT.
	// Required.
	MatchConstraints *MatchResources `json:"matchConstraints,omitempty" protobuf:"bytes,2,rep,name=matchConstraints"`

	// 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
	// except matchConditions because matchConditions are evaluated before the rest of the policy.
	//
	// The expression of a variable can refer to other variables defined earlier in the list but not those after.
	// Thus, variables must be sorted by the order of first appearance and acyclic.
	// +listType=atomic
	// +optional
	Variables []Variable `json:"variables,omitempty" protobuf:"bytes,3,rep,name=variables"`

	// mutations contain operations to perform on matching objects.
	// mutations may not be empty; a minimum of one mutation is required.
	// mutations are evaluated in order, and are reinvoked according to
	// the reinvocationPolicy.
	// The mutations of a policy are invoked for each binding of this policy
	// and reinvocation of mutations occurs on a per binding basis.
	//
	// +listType=atomic
	// +optional
	Mutations []Mutation `json:"mutations,omitempty" protobuf:"bytes,4,rep,name=mutations"`

	// failurePolicy defines how to handle failures for the admission policy. Failures can
	// occur from CEL expression parse errors, type check errors, runtime errors and invalid
	// or mis-configured policy definitions or bindings.
	//
	// A policy is invalid if paramKind refers to a non-existent Kind.
	// A binding is invalid if paramRef.name refers to a non-existent resource.
	//
	// failurePolicy does not define how validations that evaluate to false are handled.
	//
	// Allowed values are Ignore or Fail. Defaults to Fail.
	// +optional
	FailurePolicy *FailurePolicyType `json:"failurePolicy,omitempty" protobuf:"bytes,5,opt,name=failurePolicy,casttype=FailurePolicyType"`

	// matchConditions is a list of conditions that must be met for a request to be validated.
	// Match conditions filter requests that have already been matched by the matchConstraints.
	// An empty list of matchConditions matches all requests.
	// There are a maximum of 64 match conditions allowed.
	//
	// If a parameter object is provided, it can be accessed via the `params` handle in the same
	// manner as validation expressions.
	//
	// The exact matching logic is (in order):
	//   1. If ANY matchCondition evaluates to FALSE, the policy is skipped.
	//   2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.
	//   3. If any matchCondition evaluates to an error (but none are FALSE):
	//      - If failurePolicy=Fail, reject the request
	//      - If failurePolicy=Ignore, the policy is skipped
	//
	// +patchMergeKey=name
	// +patchStrategy=merge
	// +listType=map
	// +listMapKey=name
	// +optional
	MatchConditions []MatchCondition `json:"matchConditions,omitempty" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,6,rep,name=matchConditions"`

	// reinvocationPolicy indicates whether mutations may be called multiple times per MutatingAdmissionPolicyBinding
	// as part of a single admission evaluation.
	// Allowed values are "Never" and "IfNeeded".
	//
	// Never: These mutations will not be called more than once per binding in a single admission evaluation.
	//
	// IfNeeded: These mutations may be invoked more than once per binding for a single admission request and there is no guarantee of
	// order with respect to other admission plugins, admission webhooks, bindings of this policy and admission policies.  Mutations are only
	// reinvoked when mutations change the object after this mutation is invoked.
	// Required.
	ReinvocationPolicy ReinvocationPolicyType `json:"reinvocationPolicy,omitempty" protobuf:"bytes,7,opt,name=reinvocationPolicy,casttype=ReinvocationPolicyType"`
}

MutatingAdmissionPolicySpec is the specification of the desired behavior of the admission policy.

func (*MutatingAdmissionPolicySpec) DeepCopy added in v0.32.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MutatingAdmissionPolicySpec.

func (*MutatingAdmissionPolicySpec) DeepCopyInto added in v0.32.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*MutatingAdmissionPolicySpec) Descriptor added in v0.32.0

func (*MutatingAdmissionPolicySpec) Descriptor() ([]byte, []int)

func (*MutatingAdmissionPolicySpec) Marshal added in v0.32.0

func (m *MutatingAdmissionPolicySpec) Marshal() (dAtA []byte, err error)

func (*MutatingAdmissionPolicySpec) MarshalTo added in v0.32.0

func (m *MutatingAdmissionPolicySpec) MarshalTo(dAtA []byte) (int, error)

func (*MutatingAdmissionPolicySpec) MarshalToSizedBuffer added in v0.32.0

func (m *MutatingAdmissionPolicySpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MutatingAdmissionPolicySpec) ProtoMessage added in v0.32.0

func (*MutatingAdmissionPolicySpec) ProtoMessage()

func (*MutatingAdmissionPolicySpec) Reset added in v0.32.0

func (m *MutatingAdmissionPolicySpec) Reset()

func (*MutatingAdmissionPolicySpec) Size added in v0.32.0

func (m *MutatingAdmissionPolicySpec) Size() (n int)

func (*MutatingAdmissionPolicySpec) String added in v0.32.0

func (this *MutatingAdmissionPolicySpec) String() string

func (MutatingAdmissionPolicySpec) SwaggerDoc added in v0.32.0

func (MutatingAdmissionPolicySpec) SwaggerDoc() map[string]string

func (*MutatingAdmissionPolicySpec) Unmarshal added in v0.32.0

func (m *MutatingAdmissionPolicySpec) Unmarshal(dAtA []byte) error

func (*MutatingAdmissionPolicySpec) XXX_DiscardUnknown added in v0.32.0

func (m *MutatingAdmissionPolicySpec) XXX_DiscardUnknown()

func (*MutatingAdmissionPolicySpec) XXX_Marshal added in v0.32.0

func (m *MutatingAdmissionPolicySpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MutatingAdmissionPolicySpec) XXX_Merge added in v0.32.0

func (m *MutatingAdmissionPolicySpec) XXX_Merge(src proto.Message)

func (*MutatingAdmissionPolicySpec) XXX_Size added in v0.32.0

func (m *MutatingAdmissionPolicySpec) XXX_Size() int

func (*MutatingAdmissionPolicySpec) XXX_Unmarshal added in v0.32.0

func (m *MutatingAdmissionPolicySpec) XXX_Unmarshal(b []byte) error

type Mutation added in v0.32.0

type Mutation struct {
	// patchType indicates the patch strategy used.
	// Allowed values are "ApplyConfiguration" and "JSONPatch".
	// Required.
	//
	// +unionDiscriminator
	PatchType PatchType `json:"patchType" protobuf:"bytes,2,opt,name=patchType,casttype=PatchType"`

	// applyConfiguration defines the desired configuration values of an object.
	// The configuration is applied to the admission object using
	// [structured merge diff](https://github.com/kubernetes-sigs/structured-merge-diff).
	// A CEL expression is used to create apply configuration.
	ApplyConfiguration *ApplyConfiguration `json:"applyConfiguration,omitempty" protobuf:"bytes,3,opt,name=applyConfiguration"`

	// jsonPatch defines a [JSON patch](https://jsonpatch.com/) operation to perform a mutation to the object.
	// A CEL expression is used to create the JSON patch.
	JSONPatch *JSONPatch `json:"jsonPatch,omitempty" protobuf:"bytes,4,opt,name=jsonPatch"`
}

Mutation specifies the CEL expression which is used to apply the Mutation.

func (*Mutation) DeepCopy added in v0.32.0

func (in *Mutation) DeepCopy() *Mutation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Mutation.

func (*Mutation) DeepCopyInto added in v0.32.0

func (in *Mutation) DeepCopyInto(out *Mutation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Mutation) Descriptor added in v0.32.0

func (*Mutation) Descriptor() ([]byte, []int)

func (*Mutation) Marshal added in v0.32.0

func (m *Mutation) Marshal() (dAtA []byte, err error)

func (*Mutation) MarshalTo added in v0.32.0

func (m *Mutation) MarshalTo(dAtA []byte) (int, error)

func (*Mutation) MarshalToSizedBuffer added in v0.32.0

func (m *Mutation) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Mutation) ProtoMessage added in v0.32.0

func (*Mutation) ProtoMessage()

func (*Mutation) Reset added in v0.32.0

func (m *Mutation) Reset()

func (*Mutation) Size added in v0.32.0

func (m *Mutation) Size() (n int)

func (*Mutation) String added in v0.32.0

func (this *Mutation) String() string

func (Mutation) SwaggerDoc added in v0.32.0

func (Mutation) SwaggerDoc() map[string]string

func (*Mutation) Unmarshal added in v0.32.0

func (m *Mutation) Unmarshal(dAtA []byte) error

func (*Mutation) XXX_DiscardUnknown added in v0.32.0

func (m *Mutation) XXX_DiscardUnknown()

func (*Mutation) XXX_Marshal added in v0.32.0

func (m *Mutation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Mutation) XXX_Merge added in v0.32.0

func (m *Mutation) XXX_Merge(src proto.Message)

func (*Mutation) XXX_Size added in v0.32.0

func (m *Mutation) XXX_Size() int

func (*Mutation) XXX_Unmarshal added in v0.32.0

func (m *Mutation) XXX_Unmarshal(b []byte) error

type NamedRuleWithOperations

type NamedRuleWithOperations struct {
	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
	// +listType=atomic
	// +optional
	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,1,rep,name=resourceNames"`
	// RuleWithOperations is a tuple of Operations and Resources.
	RuleWithOperations `json:",inline" protobuf:"bytes,2,opt,name=ruleWithOperations"`
}

NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames. +structType=atomic

func (*NamedRuleWithOperations) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NamedRuleWithOperations.

func (*NamedRuleWithOperations) DeepCopyInto

func (in *NamedRuleWithOperations) DeepCopyInto(out *NamedRuleWithOperations)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*NamedRuleWithOperations) Descriptor

func (*NamedRuleWithOperations) Descriptor() ([]byte, []int)

func (*NamedRuleWithOperations) Marshal

func (m *NamedRuleWithOperations) Marshal() (dAtA []byte, err error)

func (*NamedRuleWithOperations) MarshalTo

func (m *NamedRuleWithOperations) MarshalTo(dAtA []byte) (int, error)

func (*NamedRuleWithOperations) MarshalToSizedBuffer

func (m *NamedRuleWithOperations) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*NamedRuleWithOperations) ProtoMessage

func (*NamedRuleWithOperations) ProtoMessage()

func (*NamedRuleWithOperations) Reset

func (m *NamedRuleWithOperations) Reset()

func (*NamedRuleWithOperations) Size

func (m *NamedRuleWithOperations) Size() (n int)

func (*NamedRuleWithOperations) String

func (this *NamedRuleWithOperations) String() string

func (NamedRuleWithOperations) SwaggerDoc

func (NamedRuleWithOperations) SwaggerDoc() map[string]string

func (*NamedRuleWithOperations) Unmarshal

func (m *NamedRuleWithOperations) Unmarshal(dAtA []byte) error

func (*NamedRuleWithOperations) XXX_DiscardUnknown

func (m *NamedRuleWithOperations) XXX_DiscardUnknown()

func (*NamedRuleWithOperations) XXX_Marshal

func (m *NamedRuleWithOperations) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NamedRuleWithOperations) XXX_Merge

func (m *NamedRuleWithOperations) XXX_Merge(src proto.Message)

func (*NamedRuleWithOperations) XXX_Size

func (m *NamedRuleWithOperations) XXX_Size() int

func (*NamedRuleWithOperations) XXX_Unmarshal

func (m *NamedRuleWithOperations) XXX_Unmarshal(b []byte) error

type OperationType

type OperationType = v1.OperationType

OperationType specifies an operation for a request. +enum

const (
	OperationAll OperationType = v1.OperationAll
	Create       OperationType = v1.Create
	Update       OperationType = v1.Update
	Delete       OperationType = v1.Delete
	Connect      OperationType = v1.Connect
)

The constants should be kept in sync with those defined in k8s.io/kubernetes/pkg/admission/interface.go.

type ParamKind

type ParamKind struct {
	// APIVersion is the API group version the resources belong to.
	// In format of "group/version".
	// Required.
	APIVersion string `json:"apiVersion,omitempty" protobuf:"bytes,1,rep,name=apiVersion"`

	// Kind is the API kind the resources belong to.
	// Required.
	Kind string `json:"kind,omitempty" protobuf:"bytes,2,rep,name=kind"`
}

ParamKind is a tuple of Group Kind and Version. +structType=atomic

func (*ParamKind) DeepCopy

func (in *ParamKind) DeepCopy() *ParamKind

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ParamKind.

func (*ParamKind) DeepCopyInto

func (in *ParamKind) DeepCopyInto(out *ParamKind)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ParamKind) Descriptor

func (*ParamKind) Descriptor() ([]byte, []int)

func (*ParamKind) Marshal

func (m *ParamKind) Marshal() (dAtA []byte, err error)

func (*ParamKind) MarshalTo

func (m *ParamKind) MarshalTo(dAtA []byte) (int, error)

func (*ParamKind) MarshalToSizedBuffer

func (m *ParamKind) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ParamKind) ProtoMessage

func (*ParamKind) ProtoMessage()

func (*ParamKind) Reset

func (m *ParamKind) Reset()

func (*ParamKind) Size

func (m *ParamKind) Size() (n int)

func (*ParamKind) String

func (this *ParamKind) String() string

func (ParamKind) SwaggerDoc

func (ParamKind) SwaggerDoc() map[string]string

func (*ParamKind) Unmarshal

func (m *ParamKind) Unmarshal(dAtA []byte) error

func (*ParamKind) XXX_DiscardUnknown

func (m *ParamKind) XXX_DiscardUnknown()

func (*ParamKind) XXX_Marshal

func (m *ParamKind) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ParamKind) XXX_Merge

func (m *ParamKind) XXX_Merge(src proto.Message)

func (*ParamKind) XXX_Size

func (m *ParamKind) XXX_Size() int

func (*ParamKind) XXX_Unmarshal

func (m *ParamKind) XXX_Unmarshal(b []byte) error

type ParamRef

type ParamRef struct {
	// `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.
	//
	// +optional
	Name string `json:"name,omitempty" protobuf:"bytes,1,rep,name=name"`

	// 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.
	//
	// +optional
	Namespace string `json:"namespace,omitempty" protobuf:"bytes,2,rep,name=namespace"`

	// 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.
	//
	// +optional
	Selector *metav1.LabelSelector `json:"selector,omitempty" protobuf:"bytes,3,rep,name=selector"`

	// `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`
	// +optional
	ParameterNotFoundAction *ParameterNotFoundActionType `json:"parameterNotFoundAction,omitempty" protobuf:"bytes,4,rep,name=parameterNotFoundAction"`
}

ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding. +structType=atomic

func (*ParamRef) DeepCopy

func (in *ParamRef) DeepCopy() *ParamRef

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ParamRef.

func (*ParamRef) DeepCopyInto

func (in *ParamRef) DeepCopyInto(out *ParamRef)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ParamRef) Descriptor

func (*ParamRef) Descriptor() ([]byte, []int)

func (*ParamRef) Marshal

func (m *ParamRef) Marshal() (dAtA []byte, err error)

func (*ParamRef) MarshalTo

func (m *ParamRef) MarshalTo(dAtA []byte) (int, error)

func (*ParamRef) MarshalToSizedBuffer

func (m *ParamRef) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ParamRef) ProtoMessage

func (*ParamRef) ProtoMessage()

func (*ParamRef) Reset

func (m *ParamRef) Reset()

func (*ParamRef) Size

func (m *ParamRef) Size() (n int)

func (*ParamRef) String

func (this *ParamRef) String() string

func (ParamRef) SwaggerDoc

func (ParamRef) SwaggerDoc() map[string]string

func (*ParamRef) Unmarshal

func (m *ParamRef) Unmarshal(dAtA []byte) error

func (*ParamRef) XXX_DiscardUnknown

func (m *ParamRef) XXX_DiscardUnknown()

func (*ParamRef) XXX_Marshal

func (m *ParamRef) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ParamRef) XXX_Merge

func (m *ParamRef) XXX_Merge(src proto.Message)

func (*ParamRef) XXX_Size

func (m *ParamRef) XXX_Size() int

func (*ParamRef) XXX_Unmarshal

func (m *ParamRef) XXX_Unmarshal(b []byte) error

type ParameterNotFoundActionType added in v0.28.0

type ParameterNotFoundActionType string

ParameterNotFoundActionType specifies a failure policy that defines how a binding is evaluated when the param referred by its perNamespaceParamRef is not found. +enum

const (
	// Ignore means that an error finding params for a binding is ignored
	AllowAction ParameterNotFoundActionType = "Allow"
	// Fail means that an error finding params for a binding is ignored
	DenyAction ParameterNotFoundActionType = "Deny"
)

type PatchType added in v0.32.0

type PatchType string

PatchType specifies the type of patch operation for a mutation. +enum

const (
	// ApplyConfiguration indicates that the mutation is using apply configuration to mutate the object.
	PatchTypeApplyConfiguration PatchType = "ApplyConfiguration"
	// JSONPatch indicates that the object is mutated through JSON Patch.
	PatchTypeJSONPatch PatchType = "JSONPatch"
)

type ReinvocationPolicyType added in v0.32.0

type ReinvocationPolicyType = v1.ReinvocationPolicyType

ReinvocationPolicyType specifies what type of policy the admission mutation uses. +enum

const (
	// NeverReinvocationPolicy indicates that the mutation must not be called more than once in a
	// single admission evaluation.
	NeverReinvocationPolicy ReinvocationPolicyType = v1.NeverReinvocationPolicy
	// IfNeededReinvocationPolicy indicates that the mutation may be called at least one
	// additional time as part of the admission evaluation if the object being admitted is
	// modified by other admission plugins after the initial mutation call.
	IfNeededReinvocationPolicy ReinvocationPolicyType = v1.IfNeededReinvocationPolicy
)

type Rule

type Rule = v1.Rule

Rule is a tuple of APIGroups, APIVersion, and Resources.It is recommended to make sure that all the tuple expansions are valid.

type RuleWithOperations

type RuleWithOperations = v1.RuleWithOperations

RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.

type ScopeType

type ScopeType = v1.ScopeType

ScopeType specifies a scope for a Rule. +enum

const (
	// ClusterScope means that scope is limited to cluster-scoped objects.
	// Namespace objects are cluster-scoped.
	ClusterScope ScopeType = v1.ClusterScope
	// NamespacedScope means that scope is limited to namespaced objects.
	NamespacedScope ScopeType = v1.NamespacedScope
	// AllScopes means that all scopes are included.
	AllScopes ScopeType = v1.AllScopes
)

type TypeChecking added in v0.27.0

type TypeChecking struct {
	// The type checking warnings for each expression.
	// +optional
	// +listType=atomic
	ExpressionWarnings []ExpressionWarning `json:"expressionWarnings,omitempty" protobuf:"bytes,1,rep,name=expressionWarnings"`
}

TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy

func (*TypeChecking) DeepCopy added in v0.27.0

func (in *TypeChecking) DeepCopy() *TypeChecking

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TypeChecking.

func (*TypeChecking) DeepCopyInto added in v0.27.0

func (in *TypeChecking) DeepCopyInto(out *TypeChecking)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*TypeChecking) Descriptor added in v0.27.0

func (*TypeChecking) Descriptor() ([]byte, []int)

func (*TypeChecking) Marshal added in v0.27.0

func (m *TypeChecking) Marshal() (dAtA []byte, err error)

func (*TypeChecking) MarshalTo added in v0.27.0

func (m *TypeChecking) MarshalTo(dAtA []byte) (int, error)

func (*TypeChecking) MarshalToSizedBuffer added in v0.27.0

func (m *TypeChecking) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TypeChecking) ProtoMessage added in v0.27.0

func (*TypeChecking) ProtoMessage()

func (*TypeChecking) Reset added in v0.27.0

func (m *TypeChecking) Reset()

func (*TypeChecking) Size added in v0.27.0

func (m *TypeChecking) Size() (n int)

func (*TypeChecking) String added in v0.27.0

func (this *TypeChecking) String() string

func (TypeChecking) SwaggerDoc added in v0.27.0

func (TypeChecking) SwaggerDoc() map[string]string

func (*TypeChecking) Unmarshal added in v0.27.0

func (m *TypeChecking) Unmarshal(dAtA []byte) error

func (*TypeChecking) XXX_DiscardUnknown added in v0.27.0

func (m *TypeChecking) XXX_DiscardUnknown()

func (*TypeChecking) XXX_Marshal added in v0.27.0

func (m *TypeChecking) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TypeChecking) XXX_Merge added in v0.27.0

func (m *TypeChecking) XXX_Merge(src proto.Message)

func (*TypeChecking) XXX_Size added in v0.27.0

func (m *TypeChecking) XXX_Size() int

func (*TypeChecking) XXX_Unmarshal added in v0.27.0

func (m *TypeChecking) XXX_Unmarshal(b []byte) error

type ValidatingAdmissionPolicy

type ValidatingAdmissionPolicy struct {
	metav1.TypeMeta `json:",inline"`
	// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
	// +optional
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
	// Specification of the desired behavior of the ValidatingAdmissionPolicy.
	Spec ValidatingAdmissionPolicySpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
	// The status of the ValidatingAdmissionPolicy, including warnings that are useful to determine if the policy
	// behaves in the expected way.
	// Populated by the system.
	// Read-only.
	// +optional
	Status ValidatingAdmissionPolicyStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it.

func (*ValidatingAdmissionPolicy) APILifecycleDeprecated added in v0.32.0

func (in *ValidatingAdmissionPolicy) APILifecycleDeprecated() (major, minor int)

APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or "k8s:prerelease-lifecycle-gen:introduced" plus three minor.

func (*ValidatingAdmissionPolicy) APILifecycleIntroduced added in v0.32.0

func (in *ValidatingAdmissionPolicy) APILifecycleIntroduced() (major, minor int)

APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.

func (*ValidatingAdmissionPolicy) APILifecycleRemoved added in v0.32.0

func (in *ValidatingAdmissionPolicy) APILifecycleRemoved() (major, minor int)

APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or "k8s:prerelease-lifecycle-gen:deprecated" plus three minor.

func (*ValidatingAdmissionPolicy) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ValidatingAdmissionPolicy.

func (*ValidatingAdmissionPolicy) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ValidatingAdmissionPolicy) DeepCopyObject

func (in *ValidatingAdmissionPolicy) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ValidatingAdmissionPolicy) Descriptor

func (*ValidatingAdmissionPolicy) Descriptor() ([]byte, []int)

func (*ValidatingAdmissionPolicy) Marshal

func (m *ValidatingAdmissionPolicy) Marshal() (dAtA []byte, err error)

func (*ValidatingAdmissionPolicy) MarshalTo

func (m *ValidatingAdmissionPolicy) MarshalTo(dAtA []byte) (int, error)

func (*ValidatingAdmissionPolicy) MarshalToSizedBuffer

func (m *ValidatingAdmissionPolicy) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ValidatingAdmissionPolicy) ProtoMessage

func (*ValidatingAdmissionPolicy) ProtoMessage()

func (*ValidatingAdmissionPolicy) Reset

func (m *ValidatingAdmissionPolicy) Reset()

func (*ValidatingAdmissionPolicy) Size

func (m *ValidatingAdmissionPolicy) Size() (n int)

func (*ValidatingAdmissionPolicy) String

func (this *ValidatingAdmissionPolicy) String() string

func (ValidatingAdmissionPolicy) SwaggerDoc

func (ValidatingAdmissionPolicy) SwaggerDoc() map[string]string

func (*ValidatingAdmissionPolicy) Unmarshal

func (m *ValidatingAdmissionPolicy) Unmarshal(dAtA []byte) error

func (*ValidatingAdmissionPolicy) XXX_DiscardUnknown

func (m *ValidatingAdmissionPolicy) XXX_DiscardUnknown()

func (*ValidatingAdmissionPolicy) XXX_Marshal

func (m *ValidatingAdmissionPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ValidatingAdmissionPolicy) XXX_Merge

func (m *ValidatingAdmissionPolicy) XXX_Merge(src proto.Message)

func (*ValidatingAdmissionPolicy) XXX_Size

func (m *ValidatingAdmissionPolicy) XXX_Size() int

func (*ValidatingAdmissionPolicy) XXX_Unmarshal

func (m *ValidatingAdmissionPolicy) XXX_Unmarshal(b []byte) error

type ValidatingAdmissionPolicyBinding

type ValidatingAdmissionPolicyBinding struct {
	metav1.TypeMeta `json:",inline"`
	// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
	// +optional
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
	// Specification of the desired behavior of the ValidatingAdmissionPolicyBinding.
	Spec ValidatingAdmissionPolicyBindingSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
}

ValidatingAdmissionPolicyBinding binds the ValidatingAdmissionPolicy with paramerized resources. ValidatingAdmissionPolicyBinding and parameter CRDs together define how cluster administrators configure policies for clusters.

For a given admission request, each binding will cause its policy to be evaluated N times, where N is 1 for policies/bindings that don't use params, otherwise N is the number of parameters selected by the binding.

The CEL expressions of a policy must have a computed CEL cost below the maximum CEL budget. Each evaluation of the policy is given an independent CEL cost budget. Adding/removing policies, bindings, or params can not affect whether a given (policy, binding, param) combination is within its own CEL budget.

func (*ValidatingAdmissionPolicyBinding) APILifecycleDeprecated added in v0.32.0

func (in *ValidatingAdmissionPolicyBinding) APILifecycleDeprecated() (major, minor int)

APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or "k8s:prerelease-lifecycle-gen:introduced" plus three minor.

func (*ValidatingAdmissionPolicyBinding) APILifecycleIntroduced added in v0.32.0

func (in *ValidatingAdmissionPolicyBinding) APILifecycleIntroduced() (major, minor int)

APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.

func (*ValidatingAdmissionPolicyBinding) APILifecycleRemoved added in v0.32.0

func (in *ValidatingAdmissionPolicyBinding) APILifecycleRemoved() (major, minor int)

APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or "k8s:prerelease-lifecycle-gen:deprecated" plus three minor.

func (*ValidatingAdmissionPolicyBinding) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ValidatingAdmissionPolicyBinding.

func (*ValidatingAdmissionPolicyBinding) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ValidatingAdmissionPolicyBinding) DeepCopyObject

func (in *ValidatingAdmissionPolicyBinding) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ValidatingAdmissionPolicyBinding) Descriptor

func (*ValidatingAdmissionPolicyBinding) Descriptor() ([]byte, []int)

func (*ValidatingAdmissionPolicyBinding) Marshal

func (m *ValidatingAdmissionPolicyBinding) Marshal() (dAtA []byte, err error)

func (*ValidatingAdmissionPolicyBinding) MarshalTo

func (m *ValidatingAdmissionPolicyBinding) MarshalTo(dAtA []byte) (int, error)

func (*ValidatingAdmissionPolicyBinding) MarshalToSizedBuffer

func (m *ValidatingAdmissionPolicyBinding) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ValidatingAdmissionPolicyBinding) ProtoMessage

func (*ValidatingAdmissionPolicyBinding) ProtoMessage()

func (*ValidatingAdmissionPolicyBinding) Reset

func (*ValidatingAdmissionPolicyBinding) Size

func (m *ValidatingAdmissionPolicyBinding) Size() (n int)

func (*ValidatingAdmissionPolicyBinding) String

func (ValidatingAdmissionPolicyBinding) SwaggerDoc

func (*ValidatingAdmissionPolicyBinding) Unmarshal

func (m *ValidatingAdmissionPolicyBinding) Unmarshal(dAtA []byte) error

func (*ValidatingAdmissionPolicyBinding) XXX_DiscardUnknown

func (m *ValidatingAdmissionPolicyBinding) XXX_DiscardUnknown()

func (*ValidatingAdmissionPolicyBinding) XXX_Marshal

func (m *ValidatingAdmissionPolicyBinding) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ValidatingAdmissionPolicyBinding) XXX_Merge

func (*ValidatingAdmissionPolicyBinding) XXX_Size

func (m *ValidatingAdmissionPolicyBinding) XXX_Size() int

func (*ValidatingAdmissionPolicyBinding) XXX_Unmarshal

func (m *ValidatingAdmissionPolicyBinding) XXX_Unmarshal(b []byte) error

type ValidatingAdmissionPolicyBindingList

type ValidatingAdmissionPolicyBindingList struct {
	metav1.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	// +optional
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
	// List of PolicyBinding.
	Items []ValidatingAdmissionPolicyBinding `json:"items" protobuf:"bytes,2,rep,name=items"`
}

ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding.

func (*ValidatingAdmissionPolicyBindingList) APILifecycleDeprecated added in v0.32.0

func (in *ValidatingAdmissionPolicyBindingList) APILifecycleDeprecated() (major, minor int)

APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or "k8s:prerelease-lifecycle-gen:introduced" plus three minor.

func (*ValidatingAdmissionPolicyBindingList) APILifecycleIntroduced added in v0.32.0

func (in *ValidatingAdmissionPolicyBindingList) APILifecycleIntroduced() (major, minor int)

APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.

func (*ValidatingAdmissionPolicyBindingList) APILifecycleRemoved added in v0.32.0

func (in *ValidatingAdmissionPolicyBindingList) APILifecycleRemoved() (major, minor int)

APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or "k8s:prerelease-lifecycle-gen:deprecated" plus three minor.

func (*ValidatingAdmissionPolicyBindingList) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ValidatingAdmissionPolicyBindingList.

func (*ValidatingAdmissionPolicyBindingList) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ValidatingAdmissionPolicyBindingList) DeepCopyObject

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ValidatingAdmissionPolicyBindingList) Descriptor

func (*ValidatingAdmissionPolicyBindingList) Descriptor() ([]byte, []int)

func (*ValidatingAdmissionPolicyBindingList) Marshal

func (m *ValidatingAdmissionPolicyBindingList) Marshal() (dAtA []byte, err error)

func (*ValidatingAdmissionPolicyBindingList) MarshalTo

func (m *ValidatingAdmissionPolicyBindingList) MarshalTo(dAtA []byte) (int, error)

func (*ValidatingAdmissionPolicyBindingList) MarshalToSizedBuffer

func (m *ValidatingAdmissionPolicyBindingList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ValidatingAdmissionPolicyBindingList) ProtoMessage

func (*ValidatingAdmissionPolicyBindingList) ProtoMessage()

func (*ValidatingAdmissionPolicyBindingList) Reset

func (*ValidatingAdmissionPolicyBindingList) Size

func (*ValidatingAdmissionPolicyBindingList) String

func (ValidatingAdmissionPolicyBindingList) SwaggerDoc

func (*ValidatingAdmissionPolicyBindingList) Unmarshal

func (m *ValidatingAdmissionPolicyBindingList) Unmarshal(dAtA []byte) error

func (*ValidatingAdmissionPolicyBindingList) XXX_DiscardUnknown

func (m *ValidatingAdmissionPolicyBindingList) XXX_DiscardUnknown()

func (*ValidatingAdmissionPolicyBindingList) XXX_Marshal

func (m *ValidatingAdmissionPolicyBindingList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ValidatingAdmissionPolicyBindingList) XXX_Merge

func (*ValidatingAdmissionPolicyBindingList) XXX_Size

func (*ValidatingAdmissionPolicyBindingList) XXX_Unmarshal

func (m *ValidatingAdmissionPolicyBindingList) XXX_Unmarshal(b []byte) error

type ValidatingAdmissionPolicyBindingSpec

type ValidatingAdmissionPolicyBindingSpec struct {
	// PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to.
	// If the referenced resource does not exist, this binding is considered invalid and will be ignored
	// Required.
	PolicyName string `json:"policyName,omitempty" protobuf:"bytes,1,rep,name=policyName"`

	// paramRef specifies the parameter resource used to configure the admission control policy.
	// It should point to a resource of the type specified in ParamKind of the bound ValidatingAdmissionPolicy.
	// If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied.
	// If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param.
	// +optional
	ParamRef *ParamRef `json:"paramRef,omitempty" protobuf:"bytes,2,rep,name=paramRef"`

	// MatchResources declares what resources match this binding and will be validated by it.
	// Note that this is intersected with the policy's matchConstraints, so only requests that are matched by the policy can be selected by this.
	// If this is unset, all resources matched by the policy are validated by this binding
	// When resourceRules is unset, it does not constrain resource matching. If a resource is matched by the other fields of this object, it will be validated.
	// Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required.
	// +optional
	MatchResources *MatchResources `json:"matchResources,omitempty" protobuf:"bytes,3,rep,name=matchResources"`

	// validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced.
	// If a validation evaluates to false it is always enforced according to these actions.
	//
	// Failures defined by the ValidatingAdmissionPolicy's FailurePolicy are enforced according
	// to these actions only if the FailurePolicy is set to Fail, otherwise the failures are
	// ignored. This includes compilation errors, runtime errors and misconfigurations of the policy.
	//
	// validationActions is declared as a set of action values. Order does
	// not matter. validationActions may not contain duplicates of the same action.
	//
	// The supported actions values are:
	//
	// "Deny" specifies that a validation failure results in a denied request.
	//
	// "Warn" specifies that a validation failure is reported to the request client
	// in HTTP Warning headers, with a warning code of 299. Warnings can be sent
	// both for allowed or denied admission responses.
	//
	// "Audit" specifies that a validation failure is included in the published
	// audit event for the request. The audit event will contain a
	// `validation.policy.admission.k8s.io/validation_failure` audit annotation
	// with a value containing the details of the validation failures, formatted as
	// a JSON list of objects, each with the following fields:
	// - message: The validation failure message string
	// - policy: The resource name of the ValidatingAdmissionPolicy
	// - binding: The resource name of the ValidatingAdmissionPolicyBinding
	// - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy
	// - validationActions: The enforcement actions enacted for the validation failure
	// Example audit annotation:
	// `"validation.policy.admission.k8s.io/validation_failure": "[{\"message\": \"Invalid value\", {\"policy\": \"policy.example.com\", {\"binding\": \"policybinding.example.com\", {\"expressionIndex\": \"1\", {\"validationActions\": [\"Audit\"]}]"`
	//
	// Clients should expect to handle additional values by ignoring
	// any values not recognized.
	//
	// "Deny" and "Warn" may not be used together since this combination
	// needlessly duplicates the validation failure both in the
	// API response body and the HTTP warning headers.
	//
	// Required.
	// +listType=set
	ValidationActions []ValidationAction `json:"validationActions,omitempty" protobuf:"bytes,4,rep,name=validationActions"`
}

ValidatingAdmissionPolicyBindingSpec is the specification of the ValidatingAdmissionPolicyBinding.

func (*ValidatingAdmissionPolicyBindingSpec) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ValidatingAdmissionPolicyBindingSpec.

func (*ValidatingAdmissionPolicyBindingSpec) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ValidatingAdmissionPolicyBindingSpec) Descriptor

func (*ValidatingAdmissionPolicyBindingSpec) Descriptor() ([]byte, []int)

func (*ValidatingAdmissionPolicyBindingSpec) Marshal

func (m *ValidatingAdmissionPolicyBindingSpec) Marshal() (dAtA []byte, err error)

func (*ValidatingAdmissionPolicyBindingSpec) MarshalTo

func (m *ValidatingAdmissionPolicyBindingSpec) MarshalTo(dAtA []byte) (int, error)

func (*ValidatingAdmissionPolicyBindingSpec) MarshalToSizedBuffer

func (m *ValidatingAdmissionPolicyBindingSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ValidatingAdmissionPolicyBindingSpec) ProtoMessage

func (*ValidatingAdmissionPolicyBindingSpec) ProtoMessage()

func (*ValidatingAdmissionPolicyBindingSpec) Reset

func (*ValidatingAdmissionPolicyBindingSpec) Size

func (*ValidatingAdmissionPolicyBindingSpec) String

func (ValidatingAdmissionPolicyBindingSpec) SwaggerDoc

func (*ValidatingAdmissionPolicyBindingSpec) Unmarshal

func (m *ValidatingAdmissionPolicyBindingSpec) Unmarshal(dAtA []byte) error

func (*ValidatingAdmissionPolicyBindingSpec) XXX_DiscardUnknown

func (m *ValidatingAdmissionPolicyBindingSpec) XXX_DiscardUnknown()

func (*ValidatingAdmissionPolicyBindingSpec) XXX_Marshal

func (m *ValidatingAdmissionPolicyBindingSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ValidatingAdmissionPolicyBindingSpec) XXX_Merge

func (*ValidatingAdmissionPolicyBindingSpec) XXX_Size

func (*ValidatingAdmissionPolicyBindingSpec) XXX_Unmarshal

func (m *ValidatingAdmissionPolicyBindingSpec) XXX_Unmarshal(b []byte) error

type ValidatingAdmissionPolicyList

type ValidatingAdmissionPolicyList struct {
	metav1.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	// +optional
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
	// List of ValidatingAdmissionPolicy.
	Items []ValidatingAdmissionPolicy `json:"items" protobuf:"bytes,2,rep,name=items"`
}

ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy.

func (*ValidatingAdmissionPolicyList) APILifecycleDeprecated added in v0.32.0

func (in *ValidatingAdmissionPolicyList) APILifecycleDeprecated() (major, minor int)

APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or "k8s:prerelease-lifecycle-gen:introduced" plus three minor.

func (*ValidatingAdmissionPolicyList) APILifecycleIntroduced added in v0.32.0

func (in *ValidatingAdmissionPolicyList) APILifecycleIntroduced() (major, minor int)

APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.

func (*ValidatingAdmissionPolicyList) APILifecycleRemoved added in v0.32.0

func (in *ValidatingAdmissionPolicyList) APILifecycleRemoved() (major, minor int)

APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison. It is controlled by "k8s:prerelease-lifecycle-gen:removed" tags in types.go or "k8s:prerelease-lifecycle-gen:deprecated" plus three minor.

func (*ValidatingAdmissionPolicyList) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ValidatingAdmissionPolicyList.

func (*ValidatingAdmissionPolicyList) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ValidatingAdmissionPolicyList) DeepCopyObject

func (in *ValidatingAdmissionPolicyList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ValidatingAdmissionPolicyList) Descriptor

func (*ValidatingAdmissionPolicyList) Descriptor() ([]byte, []int)

func (*ValidatingAdmissionPolicyList) Marshal

func (m *ValidatingAdmissionPolicyList) Marshal() (dAtA []byte, err error)

func (*ValidatingAdmissionPolicyList) MarshalTo

func (m *ValidatingAdmissionPolicyList) MarshalTo(dAtA []byte) (int, error)

func (*ValidatingAdmissionPolicyList) MarshalToSizedBuffer

func (m *ValidatingAdmissionPolicyList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ValidatingAdmissionPolicyList) ProtoMessage

func (*ValidatingAdmissionPolicyList) ProtoMessage()

func (*ValidatingAdmissionPolicyList) Reset

func (m *ValidatingAdmissionPolicyList) Reset()

func (*ValidatingAdmissionPolicyList) Size

func (m *ValidatingAdmissionPolicyList) Size() (n int)

func (*ValidatingAdmissionPolicyList) String

func (this *ValidatingAdmissionPolicyList) String() string

func (ValidatingAdmissionPolicyList) SwaggerDoc

func (ValidatingAdmissionPolicyList) SwaggerDoc() map[string]string

func (*ValidatingAdmissionPolicyList) Unmarshal

func (m *ValidatingAdmissionPolicyList) Unmarshal(dAtA []byte) error

func (*ValidatingAdmissionPolicyList) XXX_DiscardUnknown

func (m *ValidatingAdmissionPolicyList) XXX_DiscardUnknown()

func (*ValidatingAdmissionPolicyList) XXX_Marshal

func (m *ValidatingAdmissionPolicyList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ValidatingAdmissionPolicyList) XXX_Merge

func (m *ValidatingAdmissionPolicyList) XXX_Merge(src proto.Message)

func (*ValidatingAdmissionPolicyList) XXX_Size

func (m *ValidatingAdmissionPolicyList) XXX_Size() int

func (*ValidatingAdmissionPolicyList) XXX_Unmarshal

func (m *ValidatingAdmissionPolicyList) XXX_Unmarshal(b []byte) error

type ValidatingAdmissionPolicySpec

type ValidatingAdmissionPolicySpec struct {
	// ParamKind specifies the kind of resources used to parameterize this policy.
	// If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions.
	// If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied.
	// If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null.
	// +optional
	ParamKind *ParamKind `json:"paramKind,omitempty" protobuf:"bytes,1,rep,name=paramKind"`

	// MatchConstraints specifies what resources this policy is designed to validate.
	// The AdmissionPolicy cares about a request if it matches _all_ Constraints.
	// However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API
	// ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding.
	// Required.
	MatchConstraints *MatchResources `json:"matchConstraints,omitempty" protobuf:"bytes,2,rep,name=matchConstraints"`

	// Validations contain CEL expressions which is used to apply the validation.
	// Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is
	// required.
	// +listType=atomic
	// +optional
	Validations []Validation `json:"validations,omitempty" protobuf:"bytes,3,rep,name=validations"`

	// failurePolicy defines how to handle failures for the admission policy. Failures can
	// occur from CEL expression parse errors, type check errors, runtime errors and invalid
	// or mis-configured policy definitions or bindings.
	//
	// A policy is invalid if spec.paramKind refers to a non-existent Kind.
	// A binding is invalid if spec.paramRef.name refers to a non-existent resource.
	//
	// failurePolicy does not define how validations that evaluate to false are handled.
	//
	// When failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions
	// define how failures are enforced.
	//
	// Allowed values are Ignore or Fail. Defaults to Fail.
	// +optional
	FailurePolicy *FailurePolicyType `json:"failurePolicy,omitempty" protobuf:"bytes,4,opt,name=failurePolicy,casttype=FailurePolicyType"`

	// auditAnnotations contains CEL expressions which are used to produce audit
	// annotations for the audit event of the API request.
	// validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is
	// required.
	// +listType=atomic
	// +optional
	AuditAnnotations []AuditAnnotation `json:"auditAnnotations,omitempty" protobuf:"bytes,5,rep,name=auditAnnotations"`

	// MatchConditions is a list of conditions that must be met for a request to be validated.
	// Match conditions filter requests that have already been matched by the rules,
	// namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests.
	// There are a maximum of 64 match conditions allowed.
	//
	// If a parameter object is provided, it can be accessed via the `params` handle in the same
	// manner as validation expressions.
	//
	// The exact matching logic is (in order):
	//   1. If ANY matchCondition evaluates to FALSE, the policy is skipped.
	//   2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.
	//   3. If any matchCondition evaluates to an error (but none are FALSE):
	//      - If failurePolicy=Fail, reject the request
	//      - If failurePolicy=Ignore, the policy is skipped
	//
	// +patchMergeKey=name
	// +patchStrategy=merge
	// +listType=map
	// +listMapKey=name
	// +optional
	MatchConditions []MatchCondition `json:"matchConditions,omitempty" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,6,rep,name=matchConditions"`

	// 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
	// except MatchConditions because MatchConditions are evaluated before the rest of the policy.
	//
	// The expression of a variable can refer to other variables defined earlier in the list but not those after.
	// Thus, Variables must be sorted by the order of first appearance and acyclic.
	// +patchMergeKey=name
	// +patchStrategy=merge
	// +listType=map
	// +listMapKey=name
	// +optional
	Variables []Variable `json:"variables,omitempty" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,7,rep,name=variables"`
}

ValidatingAdmissionPolicySpec is the specification of the desired behavior of the AdmissionPolicy.

func (*ValidatingAdmissionPolicySpec) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ValidatingAdmissionPolicySpec.

func (*ValidatingAdmissionPolicySpec) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ValidatingAdmissionPolicySpec) Descriptor

func (*ValidatingAdmissionPolicySpec) Descriptor() ([]byte, []int)

func (*ValidatingAdmissionPolicySpec) Marshal

func (m *ValidatingAdmissionPolicySpec) Marshal() (dAtA []byte, err error)

func (*ValidatingAdmissionPolicySpec) MarshalTo

func (m *ValidatingAdmissionPolicySpec) MarshalTo(dAtA []byte) (int, error)

func (*ValidatingAdmissionPolicySpec) MarshalToSizedBuffer

func (m *ValidatingAdmissionPolicySpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ValidatingAdmissionPolicySpec) ProtoMessage

func (*ValidatingAdmissionPolicySpec) ProtoMessage()

func (*ValidatingAdmissionPolicySpec) Reset

func (m *ValidatingAdmissionPolicySpec) Reset()

func (*ValidatingAdmissionPolicySpec) Size

func (m *ValidatingAdmissionPolicySpec) Size() (n int)

func (*ValidatingAdmissionPolicySpec) String

func (this *ValidatingAdmissionPolicySpec) String() string

func (ValidatingAdmissionPolicySpec) SwaggerDoc

func (ValidatingAdmissionPolicySpec) SwaggerDoc() map[string]string

func (*ValidatingAdmissionPolicySpec) Unmarshal

func (m *ValidatingAdmissionPolicySpec) Unmarshal(dAtA []byte) error

func (*ValidatingAdmissionPolicySpec) XXX_DiscardUnknown

func (m *ValidatingAdmissionPolicySpec) XXX_DiscardUnknown()

func (*ValidatingAdmissionPolicySpec) XXX_Marshal

func (m *ValidatingAdmissionPolicySpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ValidatingAdmissionPolicySpec) XXX_Merge

func (m *ValidatingAdmissionPolicySpec) XXX_Merge(src proto.Message)

func (*ValidatingAdmissionPolicySpec) XXX_Size

func (m *ValidatingAdmissionPolicySpec) XXX_Size() int

func (*ValidatingAdmissionPolicySpec) XXX_Unmarshal

func (m *ValidatingAdmissionPolicySpec) XXX_Unmarshal(b []byte) error

type ValidatingAdmissionPolicyStatus added in v0.27.0

type ValidatingAdmissionPolicyStatus struct {
	// The generation observed by the controller.
	// +optional
	ObservedGeneration int64 `json:"observedGeneration,omitempty" protobuf:"varint,1,opt,name=observedGeneration"`
	// The results of type checking for each expression.
	// Presence of this field indicates the completion of the type checking.
	// +optional
	TypeChecking *TypeChecking `json:"typeChecking,omitempty" protobuf:"bytes,2,opt,name=typeChecking"`
	// The conditions represent the latest available observations of a policy's current state.
	// +optional
	// +listType=map
	// +listMapKey=type
	Conditions []metav1.Condition `json:"conditions,omitempty" protobuf:"bytes,3,rep,name=conditions"`
}

ValidatingAdmissionPolicyStatus represents the status of a ValidatingAdmissionPolicy.

func (*ValidatingAdmissionPolicyStatus) DeepCopy added in v0.27.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ValidatingAdmissionPolicyStatus.

func (*ValidatingAdmissionPolicyStatus) DeepCopyInto added in v0.27.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ValidatingAdmissionPolicyStatus) Descriptor added in v0.27.0

func (*ValidatingAdmissionPolicyStatus) Descriptor() ([]byte, []int)

func (*ValidatingAdmissionPolicyStatus) Marshal added in v0.27.0

func (m *ValidatingAdmissionPolicyStatus) Marshal() (dAtA []byte, err error)

func (*ValidatingAdmissionPolicyStatus) MarshalTo added in v0.27.0

func (m *ValidatingAdmissionPolicyStatus) MarshalTo(dAtA []byte) (int, error)

func (*ValidatingAdmissionPolicyStatus) MarshalToSizedBuffer added in v0.27.0

func (m *ValidatingAdmissionPolicyStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ValidatingAdmissionPolicyStatus) ProtoMessage added in v0.27.0

func (*ValidatingAdmissionPolicyStatus) ProtoMessage()

func (*ValidatingAdmissionPolicyStatus) Reset added in v0.27.0

func (*ValidatingAdmissionPolicyStatus) Size added in v0.27.0

func (m *ValidatingAdmissionPolicyStatus) Size() (n int)

func (*ValidatingAdmissionPolicyStatus) String added in v0.27.0

func (this *ValidatingAdmissionPolicyStatus) String() string

func (ValidatingAdmissionPolicyStatus) SwaggerDoc added in v0.27.0

func (*ValidatingAdmissionPolicyStatus) Unmarshal added in v0.27.0

func (m *ValidatingAdmissionPolicyStatus) Unmarshal(dAtA []byte) error

func (*ValidatingAdmissionPolicyStatus) XXX_DiscardUnknown added in v0.27.0

func (m *ValidatingAdmissionPolicyStatus) XXX_DiscardUnknown()

func (*ValidatingAdmissionPolicyStatus) XXX_Marshal added in v0.27.0

func (m *ValidatingAdmissionPolicyStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ValidatingAdmissionPolicyStatus) XXX_Merge added in v0.27.0

func (m *ValidatingAdmissionPolicyStatus) XXX_Merge(src proto.Message)

func (*ValidatingAdmissionPolicyStatus) XXX_Size added in v0.27.0

func (m *ValidatingAdmissionPolicyStatus) XXX_Size() int

func (*ValidatingAdmissionPolicyStatus) XXX_Unmarshal added in v0.27.0

func (m *ValidatingAdmissionPolicyStatus) XXX_Unmarshal(b []byte) error

type Validation

type Validation struct {
	// Expression represents the expression which will be evaluated by CEL.
	// ref: https://github.com/google/cel-spec
	// CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:
	//
	// - 'object' - The object from the incoming request. The value is null for DELETE requests.
	// - 'oldObject' - The existing object. The value is null for CREATE requests.
	// - 'request' - Attributes of the API request([ref](/pkg/apis/admission/types.go#AdmissionRequest)).
	// - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind.
	// - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources.
	// - 'variables' - Map of composited variables, from its name to its lazily evaluated value.
	//   For example, a variable named 'foo' can be accessed as 'variables.foo'.
	// - 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.
	//   See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz
	// - 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
	//   request resource.
	//
	// The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
	// object. No other metadata properties are accessible.
	//
	// Only property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible.
	// Accessible property names are escaped according to the following rules when accessed in the expression:
	// - '__' escapes to '__underscores__'
	// - '.' escapes to '__dot__'
	// - '-' escapes to '__dash__'
	// - '/' escapes to '__slash__'
	// - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are:
	//	  "true", "false", "null", "in", "as", "break", "const", "continue", "else", "for", "function", "if",
	//	  "import", "let", "loop", "package", "namespace", "return".
	// Examples:
	//   - Expression accessing a property named "namespace": {"Expression": "object.__namespace__ > 0"}
	//   - Expression accessing a property named "x-prop": {"Expression": "object.x__dash__prop > 0"}
	//   - Expression accessing a property named "redact__d": {"Expression": "object.redact__underscores__d > 0"}
	//
	// Equality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1].
	// Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:
	//   - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
	//     non-intersecting elements in `Y` are appended, retaining their partial order.
	//   - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
	//     are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with
	//     non-intersecting keys are appended, retaining their partial order.
	// Required.
	Expression string `json:"expression" protobuf:"bytes,1,opt,name=Expression"`
	// 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}".
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,2,opt,name=message"`
	// 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.
	// +optional
	Reason *metav1.StatusReason `json:"reason,omitempty" protobuf:"bytes,3,opt,name=reason"`
	// 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)+")"
	// +optional
	MessageExpression string `json:"messageExpression,omitempty" protobuf:"bytes,4,opt,name=messageExpression"`
}

Validation specifies the CEL expression which is used to apply the validation.

func (*Validation) DeepCopy

func (in *Validation) DeepCopy() *Validation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Validation.

func (*Validation) DeepCopyInto

func (in *Validation) DeepCopyInto(out *Validation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Validation) Descriptor

func (*Validation) Descriptor() ([]byte, []int)

func (*Validation) Marshal

func (m *Validation) Marshal() (dAtA []byte, err error)

func (*Validation) MarshalTo

func (m *Validation) MarshalTo(dAtA []byte) (int, error)

func (*Validation) MarshalToSizedBuffer

func (m *Validation) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Validation) ProtoMessage

func (*Validation) ProtoMessage()

func (*Validation) Reset

func (m *Validation) Reset()

func (*Validation) Size

func (m *Validation) Size() (n int)

func (*Validation) String

func (this *Validation) String() string

func (Validation) SwaggerDoc

func (Validation) SwaggerDoc() map[string]string

func (*Validation) Unmarshal

func (m *Validation) Unmarshal(dAtA []byte) error

func (*Validation) XXX_DiscardUnknown

func (m *Validation) XXX_DiscardUnknown()

func (*Validation) XXX_Marshal

func (m *Validation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Validation) XXX_Merge

func (m *Validation) XXX_Merge(src proto.Message)

func (*Validation) XXX_Size

func (m *Validation) XXX_Size() int

func (*Validation) XXX_Unmarshal

func (m *Validation) XXX_Unmarshal(b []byte) error

type ValidationAction added in v0.27.0

type ValidationAction string

ValidationAction specifies a policy enforcement action. +enum

const (
	// Deny specifies that a validation failure results in a denied request.
	Deny ValidationAction = "Deny"
	// Warn specifies that a validation failure is reported to the request client
	// in HTTP Warning headers, with a warning code of 299. Warnings can be sent
	// both for allowed or denied admission responses.
	Warn ValidationAction = "Warn"
	// Audit specifies that a validation failure is included in the published
	// audit event for the request. The audit event will contain a
	// `validation.policy.admission.k8s.io/validation_failure` audit annotation
	// with a value containing the details of the validation failure.
	Audit ValidationAction = "Audit"
)

type Variable added in v0.28.0

type Variable struct {
	// 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`
	Name string `json:"name" protobuf:"bytes,1,opt,name=Name"`

	// 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.
	Expression string `json:"expression" protobuf:"bytes,2,opt,name=Expression"`
}

Variable is the definition of a variable that is used for composition.

func (*Variable) DeepCopy added in v0.28.0

func (in *Variable) DeepCopy() *Variable

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Variable.

func (*Variable) DeepCopyInto added in v0.28.0

func (in *Variable) DeepCopyInto(out *Variable)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Variable) Descriptor added in v0.28.0

func (*Variable) Descriptor() ([]byte, []int)

func (*Variable) Marshal added in v0.28.0

func (m *Variable) Marshal() (dAtA []byte, err error)

func (*Variable) MarshalTo added in v0.28.0

func (m *Variable) MarshalTo(dAtA []byte) (int, error)

func (*Variable) MarshalToSizedBuffer added in v0.28.0

func (m *Variable) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Variable) ProtoMessage added in v0.28.0

func (*Variable) ProtoMessage()

func (*Variable) Reset added in v0.28.0

func (m *Variable) Reset()

func (*Variable) Size added in v0.28.0

func (m *Variable) Size() (n int)

func (*Variable) String added in v0.28.0

func (this *Variable) String() string

func (Variable) SwaggerDoc added in v0.28.0

func (Variable) SwaggerDoc() map[string]string

func (*Variable) Unmarshal added in v0.28.0

func (m *Variable) Unmarshal(dAtA []byte) error

func (*Variable) XXX_DiscardUnknown added in v0.28.0

func (m *Variable) XXX_DiscardUnknown()

func (*Variable) XXX_Marshal added in v0.28.0

func (m *Variable) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Variable) XXX_Merge added in v0.28.0

func (m *Variable) XXX_Merge(src proto.Message)

func (*Variable) XXX_Size added in v0.28.0

func (m *Variable) XXX_Size() int

func (*Variable) XXX_Unmarshal added in v0.28.0

func (m *Variable) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL