Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 225 for destinationFile (0.96 sec)

  1. releasenotes/notes/merge-dr.yaml

    issue: 
    - 29525
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 04 12:10:05 UTC 2021
    - 1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/tls.go

    				alt := GenerateAltVirtualHosts(a.Hostname.String(), 0, node.DNSDomain)
    				sniHosts = append(sniHosts, a.Hostname.String())
    				sniHosts = append(sniHosts, alt...)
    			}
    		}
    		destinationRule := CastDestinationRule(node.SidecarScope.DestinationRule(
    			model.TrafficDirectionOutbound, node, service.Hostname).GetRule())
    		var destinationCIDRs []string
    		if destinationCIDR != "" {
    			destinationCIDRs = []string{destinationCIDR}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route.go

    	if push == nil {
    		return nil, nil
    	}
    	mergedDR := node.SidecarScope.DestinationRule(model.TrafficDirectionOutbound, node, svc.Hostname)
    	destinationRule := mergedDR.GetRule()
    	if destinationRule == nil {
    		return nil, nil
    	}
    	rule := destinationRule.Spec.(*networking.DestinationRule)
    	consistentHash := rule.GetTrafficPolicy().GetLoadBalancer().GetConsistentHash()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  4. tests/integration/ambient/testdata/automtls-partial-sidecar-dr-mutual.yaml

            subset: "vistio"
      - name: "legacy-by-default"
        route:
        - destination:
            host: "multiversion"
            subset: "vlegacy"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "multiversion"
      annotations:
        test-suite: "automtls-partial-dr-mutual"
    spec:
      host: "multiversion"
      subsets:
      - name: "vistio"
        labels:
          version: "vistio"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/a.yaml

        route:
        - destination:
            host: a
      # Fallthrough
      - route:
        - destination:
            host: a
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: a
    spec:
      host: a
      subsets:
      - name: v1
        labels:
          version: v1
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: integ-test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 942 bytes
    - Viewed (0)
  6. samples/tcp-echo/tcp-echo-all-v1.yaml

    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 31400
          name: tcp
          protocol: TCP
        hosts:
        - "*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: tcp-echo-destination
    spec:
      host: tcp-echo
      subsets:
      - name: v1
        labels:
          version: v1
      - name: v2
        labels:
          version: v2
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 07 22:48:00 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  7. samples/multicluster/expose-istiod-https.yaml

      - match:
        - port: 15017
        route:
        - destination:
            host: istiod.istio-system.svc.cluster.local
            port:
              number: 443
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: istiod-dr
    spec:
      host: istiod.istio-system.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
        - port:
            number: 15012
          tls:
            mode: SIMPLE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  8. tests/integration/security/egress_gateway_origination_test.go

    	ingressutil "istio.io/istio/tests/integration/security/sds_ingress/util"
    )
    
    // TestSimpleTlsOrigination test SIMPLE TLS mode with TLS origination happening at Gateway proxy
    // It uses CredentialName set in DestinationRule API to fetch secrets from k8s API server
    func TestSimpleTlsOrigination(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleNetwork(). // https://github.com/istio/istio/issues/37134
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    						internalClient[0].CallOrFail(t, opts)
    					})
    			}
    		})
    }
    
    const (
    	// Destination Rule configs
    	DestinationRuleConfigSimple = `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: originate-tls-for-server-filebased-simple
    spec:
      host: "external-service.{{.AppNamespace}}.svc.cluster.local"
      trafficPolicy:
        portLevelSettings:
          - port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. pilot/pkg/model/conversion_test.go

    				}
    				assert.Equal(t, &got, c.want)
    			}
    		})
    	}
    }
    
    func TestProtoSchemaConversions(t *testing.T) {
    	destinationRuleSchema := collections.DestinationRule
    
    	msg := &networking.DestinationRule{
    		Host: "something.svc.local",
    		TrafficPolicy: &networking.TrafficPolicy{
    			LoadBalancer: &networking.LoadBalancerSettings{
    				LbPolicy: &networking.LoadBalancerSettings_Simple{},
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top