Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 127 for matchPolicy (0.18 sec)

  1. pkg/apis/admissionregistration/v1alpha1/defaults_test.go

    					MatchConstraints: &v1alpha1.MatchResources{},
    				},
    			},
    			expected: &v1alpha1.ValidatingAdmissionPolicy{
    				Spec: v1alpha1.ValidatingAdmissionPolicySpec{
    					MatchConstraints: &v1alpha1.MatchResources{
    						MatchPolicy:       &equivalent,
    						NamespaceSelector: &metav1.LabelSelector{},
    						ObjectSelector:    &metav1.LabelSelector{},
    					},
    					FailurePolicy: &fail,
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:09 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/matchresources.go

    	ExcludeResourceRules []NamedRuleWithOperationsApplyConfiguration    `json:"excludeResourceRules,omitempty"`
    	MatchPolicy          *admissionregistrationv1alpha1.MatchPolicyType `json:"matchPolicy,omitempty"`
    }
    
    // MatchResourcesApplyConfiguration constructs an declarative configuration of the MatchResources type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 20:51:52 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. istioctl/pkg/checkinject/testdata/check-inject/default-injector.yaml

          - v1beta1
          - v1
        clientConfig:
          service:
            name: istiod
            namespace: istio-system
            path: /inject
            port: 443
        failurePolicy: Fail
        matchPolicy: Equivalent
        name: rev.namespace.sidecar-injector.istio.io
        namespaceSelector:
          matchExpressions:
            - key: istio.io/rev
              operator: In
              values:
                - default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/admission/v1/generated.proto

      //
      // For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
      // `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
      // an API request to apps/v1beta1 deployments would be converted and sent to the webhook
      // with `kind: {group:"apps", version:"v1", kind:"Deployment"}` (matching the rule the webhook registered for),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admission/v1beta1/generated.proto

      //
      // For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
      // `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
      // an API request to apps/v1beta1 deployments would be converted and sent to the webhook
      // with `kind: {group:"apps", version:"v1", kind:"Deployment"}` (matching the rule the webhook registered for),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. istioctl/pkg/checkinject/testdata/check-inject/rev-16-injector.yaml

          - v1beta1
          - v1
        clientConfig:
          service:
            name: istiod-1-16
            namespace: istio-system
            path: /inject
            port: 443
        failurePolicy: Fail
        matchPolicy: Equivalent
        name: rev.namespace.sidecar-injector.istio.io
        namespaceSelector:
          matchExpressions:
            - key: istio.io/rev
              operator: In
              values:
                - 1-16
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/duplicate_mwc.yaml

      
    webhooks:
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        service:
          name: istiod
          namespace: istio-system
          path: /inject
          port: 443
      failurePolicy: Fail
      matchPolicy: Equivalent
      name: rev.namespace.sidecar-injector.istio.io
      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: In
          values:
          - default
        - key: istio-injection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/v1alpha1/defaults.go

    	}
    }
    
    // SetDefaults_MatchResources sets defaults for MatchResources
    func SetDefaults_MatchResources(obj *admissionregistrationv1alpha1.MatchResources) {
    	if obj.MatchPolicy == nil {
    		policy := admissionregistrationv1alpha1.Equivalent
    		obj.MatchPolicy = &policy
    	}
    	if obj.NamespaceSelector == nil {
    		selector := metav1.LabelSelector{}
    		obj.NamespaceSelector = &selector
    	}
    	if obj.ObjectSelector == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/mutatingwebhook.go

    	FailurePolicy           *admissionregistrationv1.FailurePolicyType      `json:"failurePolicy,omitempty"`
    	MatchPolicy             *admissionregistrationv1.MatchPolicyType        `json:"matchPolicy,omitempty"`
    	NamespaceSelector       *metav1.LabelSelectorApplyConfiguration         `json:"namespaceSelector,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_installation_failed.yaml

    webhooks:
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        service:
          name: istiod
          namespace: istio-system
          path: /inject
          port: 443
      failurePolicy: Fail
      matchPolicy: Equivalent
      name: rev.namespace.sidecar-injector.istio.io
      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: In
          values:
          - default
        - key: istio-injection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top