Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 66 for matchConditions (0.52 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.pb.go

    func (m *MatchCondition) Reset()      { *m = MatchCondition{} }
    func (*MatchCondition) ProtoMessage() {}
    func (*MatchCondition) Descriptor() ([]byte, []int) {
    	return fileDescriptor_7f7c65a4f012fb19, []int{2}
    }
    func (m *MatchCondition) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *MatchCondition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 187.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.pb.go

    func (m *MatchCondition) Reset()      { *m = MatchCondition{} }
    func (*MatchCondition) ProtoMessage() {}
    func (*MatchCondition) Descriptor() ([]byte, []int) {
    	return fileDescriptor_3205c7dc5bf0c9bf, []int{2}
    }
    func (m *MatchCondition) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *MatchCondition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 200.5K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    	}
    
    	if invocation == nil {
    		return nil, nil
    	}
    	if matchNsErr != nil {
    		return nil, matchNsErr
    	}
    	if matchObjErr != nil {
    		return nil, matchObjErr
    	}
    	matchConditions := h.GetMatchConditions()
    	if len(matchConditions) > 0 {
    		versionedAttr, err := v.VersionedAttribute(invocation.Kind)
    		if err != nil {
    			return nil, apierrors.NewInternalError(err)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/zz_generated.deepcopy.go

    	*out = *in
    	out.AuthorizedTTL = in.AuthorizedTTL
    	out.UnauthorizedTTL = in.UnauthorizedTTL
    	out.Timeout = in.Timeout
    	in.ConnectionInfo.DeepCopyInto(&out.ConnectionInfo)
    	if in.MatchConditions != nil {
    		in, out := &in.MatchConditions, &out.MatchConditions
    		*out = make([]WebhookMatchCondition, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:10:34 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_dispatcher.go

    // matching policy-binding-param tuple. The delegate is then called with the
    // list of tuples.
    //
    // Note: MatchConditions expressions are not evaluated here. The dispatcher delegate
    // is expected to ignore the result of any policies whose match conditions dont pass.
    // This may be possible to refactor so matchconditions are checked here instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.deepcopy.go

    	*out = *in
    	out.AuthorizedTTL = in.AuthorizedTTL
    	out.UnauthorizedTTL = in.UnauthorizedTTL
    	out.Timeout = in.Timeout
    	in.ConnectionInfo.DeepCopyInto(&out.ConnectionInfo)
    	if in.MatchConditions != nil {
    		in, out := &in.MatchConditions, &out.MatchConditions
    		*out = make([]WebhookMatchCondition, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top