Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 407 for NamespaceSelector (0.54 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/revision-tags.yaml

        operator.istio.io/component: "Pilot"
        app: sidecar-injector
        release: {{ $.Release.Name }}
    webhooks:
    {{- include "core" (mergeOverwrite (deepCopy $whv) (dict "Prefix" "rev.namespace.") ) }}
      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: In
          values:
          - "{{ $tagName }}"
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_tag.yaml

        service:
          name: istiod-test-dev2
          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
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 17:23:44 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. istioctl/pkg/checkinject/testdata/check-inject/default-injector.yaml

            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
              operator: DoesNotExist
        objectSelector:
    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. pkg/apis/networking/v1/defaults_test.go

    										MatchLabels: map[string]string{"c": "d"},
    									},
    									NamespaceSelector: &metav1.LabelSelector{
    										MatchLabels: map[string]string{"c": "d"},
    									},
    								},
    							},
    						},
    					},
    					Egress: []networkingv1.NetworkPolicyEgressRule{
    						{
    							To: []networkingv1.NetworkPolicyPeer{
    								{
    									NamespaceSelector: &metav1.LabelSelector{
    										MatchLabels: map[string]string{"c": "d"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 10:48:05 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/webhook.yaml

      name: istio-sidecar-injector-missing-overlap
    webhooks:
    - admissionReviewVersions:
      - v1beta1
      clientConfig:
        service:
          name: fake
          namespace: istio-system
      name: sidecar-injector.istio.io
      namespaceSelector:
        matchLabels:
          istio-injection: enabled
    ---
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
      name: istio-sidecar-injector-overlap
    webhooks:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 819 bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/matchresources.go

    )
    
    // MatchResourcesApplyConfiguration represents an declarative configuration of the MatchResources type for use
    // with apply.
    type MatchResourcesApplyConfiguration struct {
    	NamespaceSelector    *v1.LabelSelectorApplyConfiguration            `json:"namespaceSelector,omitempty"`
    	ObjectSelector       *v1.LabelSelectorApplyConfiguration            `json:"objectSelector,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 20:51:52 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. samples/ambient-argo/tag-chart/templates/mutatingwebhooks.yaml

        operator.istio.io/component: "Pilot"
        app: sidecar-injector
        release: {{ $.Release.Name }}
    webhooks:
    {{- include "core" (mergeOverwrite (deepCopy $) (deepCopy $tag) (dict "Prefix" "rev.namespace.") ) }}
      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: In
          values:
          - "{{ $tagName }}"
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/matchresources.go

    )
    
    // MatchResourcesApplyConfiguration represents an declarative configuration of the MatchResources type for use
    // with apply.
    type MatchResourcesApplyConfiguration struct {
    	NamespaceSelector    *v1.LabelSelectorApplyConfiguration           `json:"namespaceSelector,omitempty"`
    	ObjectSelector       *v1.LabelSelectorApplyConfiguration           `json:"objectSelector,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podaffinityterm.go

    	Namespaces        []string                            `json:"namespaces,omitempty"`
    	TopologyKey       *string                             `json:"topologyKey,omitempty"`
    	NamespaceSelector *v1.LabelSelectorApplyConfiguration `json:"namespaceSelector,omitempty"`
    	MatchLabelKeys    []string                            `json:"matchLabelKeys,omitempty"`
    	MismatchLabelKeys []string                            `json:"mismatchLabelKeys,omitempty"`
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 11:28:02 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/templates/mutatingwebhook.yaml

    {{- /* Note: if both revision and legacy selector, we give precedence to the legacy one */}}
    {{- include "core" (mergeOverwrite (deepCopy $whv) (dict "Prefix" "rev.namespace.") ) }}
      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: In
          values:
          {{- if (eq .Values.revision "") }}
          - "default"
          {{- else }}
          - "{{ .Values.revision }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top