Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 63 for matchConditions (0.2 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.yaml

      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      auditAnnotations:
      - key: keyValue
        valueExpression: valueExpressionValue
      failurePolicy: failurePolicyValue
      matchConditions:
      - expression: expressionValue
        name: nameValue
      matchConstraints:
        excludeResourceRules:
        - apiGroups:
          - apiGroupsValue
          apiVersions:
          - apiVersionsValue
          operations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 00:13:28 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.yaml

      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      auditAnnotations:
      - key: keyValue
        valueExpression: valueExpressionValue
      failurePolicy: failurePolicyValue
      matchConditions:
      - expression: expressionValue
        name: nameValue
      matchConstraints:
        excludeResourceRules:
        - apiGroups:
          - apiGroupsValue
          apiVersions:
          - apiVersionsValue
          operations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 00:13:28 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/matchconditions/matcher.go

    	"k8s.io/klog/v2"
    )
    
    var _ celplugin.ExpressionAccessor = &MatchCondition{}
    
    // MatchCondition contains the inputs needed to compile, evaluate and match a cel expression
    type MatchCondition v1.MatchCondition
    
    func (v *MatchCondition) GetExpression() string {
    	return v.Expression
    }
    
    func (v *MatchCondition) ReturnTypes() []*cel.Type {
    	return []*cel.Type{cel.BoolType}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 5K 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/admission/plugin/webhook/matchconditions/matcher_test.go

    					ExpressionAccessor: &MatchCondition{},
    				},
    				{
    					Error:              errors.New("test error"),
    					ExpressionAccessor: &MatchCondition{},
    				},
    				{
    					EvalResult:         celtypes.False,
    					ExpressionAccessor: &MatchCondition{},
    				},
    				{
    					EvalResult:         celtypes.True,
    					ExpressionAccessor: &MatchCondition{},
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 00:53:08 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/authorizer/reload.go

    				configuredAuthorizer.Webhook.AuthorizedTTL.Duration,
    				configuredAuthorizer.Webhook.UnauthorizedTTL.Duration,
    				*r.initialConfig.WebhookRetryBackoff,
    				decisionOnError,
    				configuredAuthorizer.Webhook.MatchConditions,
    				configuredAuthorizer.Name,
    				kubeapiserverWebhookMetrics{WebhookMetrics: webhookmetrics.NewWebhookMetrics(), MatcherMetrics: cel.NewMatcherMetrics()},
    			)
    			if err != nil {
    				return nil, nil, err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/matchcondition.go

    // with apply.
    type MatchConditionApplyConfiguration struct {
    	Name       *string `json:"name,omitempty"`
    	Expression *string `json:"expression,omitempty"`
    }
    
    // MatchConditionApplyConfiguration constructs an declarative configuration of the MatchCondition type for use with
    // apply.
    func MatchCondition() *MatchConditionApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top