Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for matchConditions (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    	m.compileMatcher.Do(func() {
    		expressions := make([]cel.ExpressionAccessor, len(m.MutatingWebhook.MatchConditions))
    		for i, matchCondition := range m.MutatingWebhook.MatchConditions {
    			expressions[i] = &matchconditions.MatchCondition{
    				Name:       matchCondition.Name,
    				Expression: matchCondition.Expression,
    			}
    		}
    		strictCost := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/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: Fri Jul 21 20:56:23 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/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
    - 24.6K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/admissionregistration/v1";
    
    // MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook.
    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
      // as well as providing an identifier for logging purposes. A good name should be descriptive of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/admissionregistration/v1beta1";
    
    // MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook.
    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
      // as well as providing an identifier for logging purposes. A good name should be descriptive of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    }
    
    // newWithBackoff allows tests to skip the sleep.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	ConnectionInfo WebhookConnectionInfo
    
    	// matchConditions is a list of conditions that must be met for a request to be sent to this
    	// webhook. An empty list of matchConditions matches all requests.
    	// There are a maximum of 64 match conditions allowed.
    	//
    	// The exact matching logic is (in order):
    	//   1. If at least one matchCondition evaluates to FALSE, then the webhook is skipped.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/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: Wed Mar 06 00:00:21 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fldPath.Child("matchConditions"), "", "matchConditions are not supported when StructuredAuthorizationConfiguration feature gate is disabled"))
    	}
    	if len(matchConditions) > 64 {
    		allErrs = append(allErrs, field.TooMany(fldPath.Child("matchConditions"), len(matchConditions), 64))
    		return nil, allErrs
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook_test.go

    }
    
    var _ matchconditions.Matcher = &fakeMatcher{}
    
    type fakeMatcher struct {
    	throwError  error
    	matchResult bool
    }
    
    func (f *fakeMatcher) Match(ctx context.Context, versionedAttr *admission.VersionedAttributes, versionedParams runtime.Object, authz authorizer.Authorizer) matchconditions.MatchResult {
    	if f.throwError != nil {
    		return matchconditions.MatchResult{
    			Matches:             true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 28 19:30:04 UTC 2023
    - 32K bytes
    - Viewed (0)
Back to top