Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for paramRef (0.11 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    	"paramRef":          "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...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

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

    			results: []EvaluationResult{
    				{
    					EvalResult: celtypes.True,
    				},
    			},
    			hasParamKind: true,
    			params:       crdParams,
    		},
    		{
    			name: "test deny paramKind without paramRef",
    			validations: []ExpressionAccessor{
    				&condition{
    					Expression: "params != null",
    				},
    			},
    			attributes: newValidAttribute(&podObject, false),
    			results: []EvaluationResult{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    				continue
    			}
    			if !matches {
    				continue
    			}
    
    			params, err := generic.CollectParams(
    				hook.Policy.Spec.ParamKind,
    				hook.ParamInformer,
    				hook.ParamScope,
    				binding.Spec.ParamRef,
    				a.GetNamespace(),
    			)
    
    			if err != nil {
    				addConfigError(err, definition, binding)
    				continue
    			} else if versionedAttr == nil && len(params) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top