Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for matchPolicy (0.2 sec)

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

          apiVersions:
          - apiVersionsValue
          operations:
          - operationsValue
          resourceNames:
          - resourceNamesValue
          resources:
          - resourcesValue
          scope: scopeValue
        matchPolicy: matchPolicyValue
        namespaceSelector:
          matchExpressions:
          - key: keyValue
            operator: operatorValue
            values:
            - valuesValue
          matchLabels:
    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. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.yaml

          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
          values:
          - valuesValue
        matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicyBinding.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/validation/validation.go

    	var allErrors field.ErrorList
    	if mc == nil {
    		return allErrors
    	}
    	if mc.MatchPolicy == nil {
    		allErrors = append(allErrors, field.Required(fldPath.Child("matchPolicy"), ""))
    	} else if !supportedMatchPolicies.Has(string(*mc.MatchPolicy)) {
    		allErrors = append(allErrors, field.NotSupported(fldPath.Child("matchPolicy"), *mc.MatchPolicy, supportedMatchPolicies.List()))
    	}
    	if mc.NamespaceSelector == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1alpha1.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)
  7. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.yaml

          apiVersions:
          - apiVersionsValue
          operations:
          - operationsValue
          resourceNames:
          - resourceNamesValue
          resources:
          - resourcesValue
          scope: scopeValue
        matchPolicy: matchPolicyValue
        namespaceSelector:
          matchExpressions:
          - key: keyValue
            operator: operatorValue
            values:
            - valuesValue
          matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1beta1.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)
  9. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.yaml

          apiVersions:
          - apiVersionsValue
          operations:
          - operationsValue
          resourceNames:
          - resourceNamesValue
          resources:
          - resourcesValue
          scope: scopeValue
        matchPolicy: matchPolicyValue
        namespaceSelector:
          matchExpressions:
          - key: keyValue
            operator: operatorValue
            values:
            - valuesValue
          matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/validation/validation_test.go

    				}},
    				MatchConstraints: &admissionregistration.MatchResources{
    					MatchPolicy: func() *admissionregistration.MatchPolicyType {
    						r := admissionregistration.MatchPolicyType("other")
    						return &r
    					}(),
    				},
    			},
    		},
    		expectedError: `spec.matchConstraints.matchPolicy: Unsupported value: "other": supported values: "Equivalent", "Exact"`,
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
Back to top