Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for paramKind (0.29 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // `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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

    message ValidatingAdmissionPolicySpec {
      // 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.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation.go

    		allErrors = append(allErrors, field.NotSupported(fldPath.Child("failurePolicy"), *spec.FailurePolicy, supportedFailurePolicies.List()))
    	}
    	if spec.ParamKind != nil {
    		opts.allowParamsInMatchConditions = true
    		allErrors = append(allErrors, validateParamKind(*spec.ParamKind, fldPath.Child("paramKind"))...)
    	}
    	if spec.MatchConstraints == nil {
    		allErrors = append(allErrors, field.Required(fldPath.Child("matchConstraints"), ""))
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/zz_generated.deepcopy.go

    func (in *ParamKind) DeepCopyInto(out *ParamKind) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ParamKind.
    func (in *ParamKind) DeepCopy() *ParamKind {
    	if in == nil {
    		return nil
    	}
    	out := new(ParamKind)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "paramKind": {
          "apiVersion": "apiVersionValue",
          "kind": "kindValue"
        },
        "matchConstraints": {
          "namespaceSelector": {
            "matchLabels": {
              "matchLabelsKey": "matchLabelsValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.yaml

          apiVersions:
          - apiVersionsValue
          operations:
          - operationsValue
          resourceNames:
          - resourceNamesValue
          resources:
          - resourcesValue
          scope: scopeValue
      paramKind:
        apiVersion: apiVersionValue
        kind: kindValue
      validations:
      - expression: expressionValue
        message: messageValue
        messageExpression: messageExpressionValue
        reason: reasonValue
      variables:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.yaml

          apiVersions:
          - apiVersionsValue
          operations:
          - operationsValue
          resourceNames:
          - resourceNamesValue
          resources:
          - resourcesValue
          scope: scopeValue
      paramKind:
        apiVersion: apiVersionValue
        kind: kindValue
      validations:
      - expression: expressionValue
        message: messageValue
        messageExpression: messageExpressionValue
        reason: reasonValue
      variables:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    	"paramKind":        "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...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/accessor.go

    */
    
    package generic
    
    import (
    	"k8s.io/api/admissionregistration/v1"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    type PolicyAccessor interface {
    	GetName() string
    	GetNamespace() string
    	GetParamKind() *v1.ParamKind
    	GetMatchConstraints() *v1.MatchResources
    }
    
    type BindingAccessor interface {
    	GetName() string
    	GetNamespace() string
    
    	// GetPolicyName returns the name of the (Validating/Mutating)AdmissionPolicy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top