Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 218 for subkeys (0.11 sec)

  1. pkg/test/datasets/validation/dataset/networking-v1beta1-DestinationRule.yaml

    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: valid-destination-rule
    spec:
      host: c
      subsets:
        - name: v1
          labels:
            version: v1
        - name: v2
          labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 14:30:05 UTC 2024
    - 228 bytes
    - Viewed (0)
  2. tests/integration/security/ca_custom_root/main_test.go

    	clientConfig := echo.Config{
    		Namespace: customNs.Get(),
    		Service:   "client",
    	}
    	serverNakedFooConfig := echo.Config{
    		Namespace: customNs.Get(),
    		Service:   "server-naked-foo",
    		Subsets: []echo.SubsetConfig{
    			{
    				Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    			},
    		},
    		ServiceAccount: true,
    		Ports: []echo.Port{
    			{
    				Name:         "https",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/tunneling/gateway/tls/passthrough/originate-tls.tmpl.yaml

    kind: DestinationRule
    metadata:
      name: originate-tls-for-external-svc
    spec:
      host: {{ .EgressGatewayServiceName | default "istio-egressgateway" }}.{{ .EgressGatewayServiceNamespace | default "istio-system" }}.svc.cluster.local
      subsets:
      - name: originate-tls-for-plain-traffic
        trafficPolicy:
          tls:
            mode: SIMPLE
            sni: external.{{ .externalNamespace }}.svc.cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 20 19:37:50 UTC 2024
    - 472 bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/endpoints.yaml

      name: istiod{{- if .Values.revision }}-{{ .Values.revision}}{{- end }}-remote
      {{- else }}
      name: istiod{{- if .Values.revision }}-{{ .Values.revision}}{{- end }}
      {{- end }}
      namespace: {{ .Release.Namespace }}
    subsets:
    - addresses:
      - ip: {{ .Values.global.remotePilotAddress }}
      ports:
      - port: 15012
        name: tcp-istiod
        protocol: TCP
      - port: 15017
        name: tcp-webhook
        protocol: TCP
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 620 bytes
    - Viewed (0)
  5. manifests/charts/base/templates/endpoints.yaml

      name: istiod{{- if .Values.revision }}-{{ .Values.revision}}{{- end }}-remote
      {{- else }}
      name: istiod{{- if .Values.revision }}-{{ .Values.revision}}{{- end }}
      {{- end }}
      namespace: {{ .Release.Namespace }}
    subsets:
    - addresses:
      - ip: {{ .Values.global.remotePilotAddress }}
      ports:
      - port: 15012
        name: tcp-istiod
        protocol: TCP
      - port: 15017
        name: tcp-webhook
        protocol: TCP
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 620 bytes
    - Viewed (0)
  6. tests/integration/ambient/cnirepair/main_test.go

    			ServiceAccount: true,
    			Subsets: []echo.SubsetConfig{
    				{
    					Replicas: 1,
    					Version:  "v1",
    				},
    				{
    					Replicas: 1,
    					Version:  "v2",
    				},
    			},
    		}).
    		WithConfig(echo.Config{
    			Service:        Uncaptured,
    			Namespace:      apps.Namespace,
    			Ports:          ports.All(),
    			ServiceAccount: true,
    			Subsets: []echo.SubsetConfig{
    				{
    					Replicas: 1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. tests/integration/security/testdata/reachability/migration.yaml.tmpl

            subset: "vlegacy"
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: "{{ .To.ServiceName }}"
    spec:
      host: "{{ .To.ClusterLocalFQDN }}"
      subsets:
      - name: "vistio"
        labels:
          version: "vistio"
    {{- if ne .TLSMode "" }}
        trafficPolicy:
          tls:
            mode: {{ .TLSMode }}
    {{- end }}
      - name: "vlegacy"
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 975 bytes
    - Viewed (0)
  8. istioctl/pkg/describe/describe.go

    	}
    	return host + k8sSuffix
    }
    
    // getDestRuleSubsets gets names of subsets that match any pod labels (also, ones that don't match).
    func getDestRuleSubsets(subsets []*v1alpha3.Subset, podsLabels []klabels.Set) ([]string, []string) {
    	matchingSubsets := make([]string, 0, len(subsets))
    	nonmatchingSubsets := make([]string, 0, len(subsets))
    	for _, subset := range subsets {
    		subsetSelector := klabels.SelectorFromSet(subset.Labels)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/tunneling/destination-rule.tmpl.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: tunnel-outbound-traffic-to-external-svc-via-external-forward-proxy
    spec:
      host: external-forward-proxy.{{ .externalNamespace }}.svc.cluster.local
      subsets:
      - name: external-svc-tcp
        trafficPolicy:
          tunnel:
            targetHost: external.{{ .externalNamespace }}
            targetPort: {{ .externalSvcTcpPort }}
      - name: external-svc-tls
        trafficPolicy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 20 19:37:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. tests/integration/ambient/testdata/automtls-partial-sidecar-dr-no-tls.yaml

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "multiversion"
      annotations:
        test-suite: "automtls-partial-sidecar-dr-no-tls"
    spec:
      host: "multiversion"
      subsets:
      - name: "vistio"
        labels:
          version: "vistio"
      - name: "vlegacy"
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 996 bytes
    - Viewed (0)
Back to top