Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for matchConditions (0.22 sec)

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

    	"matchConditions":         "MatchConditions is a list of conditions that must be met for a request to be sent to this webhook. 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.\n\nThe exact matching logic is (in order):\n...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    	"matchConditions":         "MatchConditions is a list of conditions that must be met for a request to be sent to this webhook. 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.\n\nThe exact matching logic is (in order):\n...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    	return []error{}
    }
    
    var _ matchconditions.Matcher = &fakeCELMatcher{}
    
    type fakeCELMatcher struct {
    	error   error
    	matches bool
    }
    
    func (f *fakeCELMatcher) Match(ctx context.Context, versionedAttr *admission.VersionedAttributes, versionedParams runtime.Object, authz authorizer.Authorizer) matchconditions.MatchResult {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    	//
    	// +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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	//   3. If at least one matchCondition evaluates to an error (but none are FALSE):
    	//      - If failurePolicy=Deny, then the webhook rejects the request
    	//      - If failurePolicy=NoOpinion, then the error is ignored and the webhook is skipped
    	MatchConditions []WebhookMatchCondition `json:"matchConditions"`
    }
    
    type WebhookConnectionInfo struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics.go

    			Name:           "match_condition_evaluation_errors_total",
    			Help:           "Admission match condition evaluation errors count, identified by name of resource containing the match condition and broken out for each kind containing matchConditions (webhook or policy), operation and admission type (validate or admit).",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"name", "kind", "type", "operation"})
    
    	matchConditionExclusions := metrics.NewCounterVec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:40 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // +listMapKey=name
      // +optional
      repeated MatchCondition matchConditions = 6;
    
      // 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.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1alpha1/zz_generated.deepcopy.go

    func (in *MatchCondition) DeepCopyInto(out *MatchCondition) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MatchCondition.
    func (in *MatchCondition) DeepCopy() *MatchCondition {
    	if in == nil {
    		return nil
    	}
    	out := new(MatchCondition)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	//   3. If at least one matchCondition evaluates to an error (but none are FALSE):
    	//      - If failurePolicy=Deny, then the webhook rejects the request
    	//      - If failurePolicy=NoOpinion, then the error is ignored and the webhook is skipped
    	MatchConditions []WebhookMatchCondition `json:"matchConditions"`
    }
    
    type WebhookConnectionInfo struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top