Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for paramKind (0.2 sec)

  1. pkg/apis/admissionregistration/v1beta1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1beta1.ParamKind)(nil), (*admissionregistration.ParamKind)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1beta1_ParamKind_To_admissionregistration_ParamKind(a.(*v1beta1.ParamKind), b.(*admissionregistration.ParamKind), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 73K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	if paramIsClusterScoped {
    		policy.Spec.ParamKind = &admissionregistrationv1.ParamKind{
    			APIVersion: clusterScopedParamsGVK.GroupVersion().String(),
    			Kind:       clusterScopedParamsGVK.Kind,
    		}
    	} else {
    		policy.Spec.ParamKind = &admissionregistrationv1.ParamKind{
    			APIVersion: paramsGVK.GroupVersion().String(),
    			Kind:       paramsGVK.Kind,
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/v1/zz_generated.conversion.go

    	if err := s.AddGeneratedConversionFunc((*v1.ParamKind)(nil), (*admissionregistration.ParamKind)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_ParamKind_To_admissionregistration_ParamKind(a.(*v1.ParamKind), b.(*admissionregistration.ParamKind), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:46:30 UTC 2024
    - 73.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/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 Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// +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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/types.go

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

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