Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for matchConditions (0.15 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1.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: Thu Apr 18 08:52:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/types.go

    	//   1. If ANY matchCondition evaluates to FALSE, the webhook is skipped.
    	//   2. If ALL matchConditions evaluate to TRUE, the webhook is called.
    	//   3. If any matchCondition evaluates to an error (but none are FALSE):
    	//      - If failurePolicy=Fail, reject the request
    	//      - If failurePolicy=Ignore, the error is ignored and the webhook is skipped
    	//
    	// +optional
    	MatchConditions []MatchCondition
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.MatchCondition)(nil), (*admissionregistration.MatchCondition)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_MatchCondition_To_admissionregistration_MatchCondition(a.(*v1.MatchCondition), b.(*admissionregistration.MatchCondition), 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. staging/src/k8s.io/api/admissionregistration/v1/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 May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1.ValidatingWebhookConfiguration.yaml

      clientConfig:
        caBundle: Ag==
        service:
          name: nameValue
          namespace: namespaceValue
          path: pathValue
          port: 4
        url: urlValue
      failurePolicy: failurePolicyValue
      matchConditions:
      - expression: expressionValue
        name: nameValue
      matchPolicy: matchPolicyValue
      name: nameValue
      namespaceSelector:
        matchExpressions:
        - key: keyValue
          operator: operatorValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    			matchConditions: []api.WebhookMatchCondition{
    				{
    					Expression: "has(request.resourceAttributes) && request.resourceAttributes.namespace == 'kube-system'",
    				},
    				{
    					Expression: "request.user == 'admin'",
    				},
    			},
    			featureEnabled: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.yaml

      clientConfig:
        caBundle: Ag==
        service:
          name: nameValue
          namespace: namespaceValue
          path: pathValue
          port: 4
        url: urlValue
      failurePolicy: failurePolicyValue
      matchConditions:
      - expression: expressionValue
        name: nameValue
      matchPolicy: matchPolicyValue
      name: nameValue
      namespaceSelector:
        matchExpressions:
        - key: keyValue
          operator: operatorValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. 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)
Back to top