Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for EnableDualStack (0.17 sec)

  1. pkg/test/framework/components/echo/common/deployment/external.go

    		},
    		Subsets: []echo.SubsetConfig{
    			{
    				Version:     "v1",
    				Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    			},
    		},
    	}
    	if t.Settings().EnableDualStack {
    		config.IPFamilies = "IPv6, IPv4"
    		config.IPFamilyPolicy = "RequireDualStack"
    	}
    	return b.WithConfig(config)
    }
    
    func (e *External) LoadValues(echos echo.Instances) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. pkg/test/framework/resource/flags.go

    		"Maximum number of full test dumps that are allowed to occur within a test suite.")
    	flag.BoolVar(&settingsFromCommandLine.EnableDualStack, "istio.test.enableDualStack", settingsFromCommandLine.EnableDualStack,
    		"Deploy Istio with Dual Stack enabled.")
    	flag.StringVar(&settingsFromCommandLine.HelmRepo, "istio.test.helmRepo", settingsFromCommandLine.HelmRepo, "Helm repo to use to pull the charts.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. pkg/test/framework/resource/settings.go

    	CustomGRPCEchoImage string
    
    	// MaxDumps is the maximum number of full test dumps that are allowed to occur within a test suite.
    	MaxDumps uint64
    
    	// EnableDualStack indicates the test should have dual stack enabled or not.
    	EnableDualStack bool
    
    	// Helm repo to be used for tests
    	HelmRepo string
    
    	DisableDefaultExternalServiceConnectivity bool
    
    	PeerMetadataDiscovery bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/common/deployment/namespace.go

    	n.B = match.ServiceName(echo.NamespacedName{Name: BSvc, Namespace: ns}).GetMatches(echos)
    	n.C = match.ServiceName(echo.NamespacedName{Name: CSvc, Namespace: ns}).GetMatches(echos)
    	if t.Settings().EnableDualStack {
    		n.D = match.ServiceName(echo.NamespacedName{Name: DSvc, Namespace: ns}).GetMatches(echos)
    		n.E = match.ServiceName(echo.NamespacedName{Name: ESvc, Namespace: ns}).GetMatches(echos)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. pilot/pkg/features/experimental.go

    		"PILOT_ALLOW_SIDECAR_SERVICE_INBOUND_LISTENER_MERGE",
    		false,
    		"If set, it allows creating inbound listeners for service ports and sidecar ingress listeners ",
    	).Get()
    
    	EnableDualStack = env.RegisterBoolVar("ISTIO_DUAL_STACK", false,
    		"If true, Istio will enable the Dual Stack feature.").Get()
    
    	EnableOptimizedServicePush = env.RegisterBoolVar("ISTIO_ENABLE_OPTIMIZED_SERVICE_PUSH", true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/common/deployment/echos.go

    		Subsets:         []echo.SubsetConfig{{}},
    		IncludeExtAuthz: c.IncludeExtAuthz,
    	}
    
    	defaultConfigs = append(defaultConfigs, a, b, cSvc, headless, stateful, naked, tProxy, vmSvc)
    
    	if t.Settings().EnableDualStack {
    		dSvc := echo.Config{
    			Service:         DSvc,
    			ServiceAccount:  true,
    			Ports:           ports.All(),
    			Subsets:         []echo.SubsetConfig{{}},
    			IncludeExtAuthz: c.IncludeExtAuthz,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder.go

    			c.DnsLookupFamily = cluster.Cluster_V4_ONLY
    		} else if networkutil.AllIPv6(cb.proxyIPAddresses) {
    			// IPv6 only
    			c.DnsLookupFamily = cluster.Cluster_V6_ONLY
    		} else {
    			// Dual Stack
    			if features.EnableDualStack {
    				// using Cluster_ALL to enable Happy Eyeballsfor upstream connections
    				c.DnsLookupFamily = cluster.Cluster_ALL
    			} else {
    				// keep the original logic if Dual Stack is disable
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_builder.go

    		UseOriginalDst:   proto.BoolTrue,
    		FilterChains:     filterChains,
    		TrafficDirection: core.TrafficDirection_OUTBOUND,
    	}
    	// add extra addresses for the listener
    	if features.EnableDualStack && len(actualWildcards) > 1 {
    		ipTablesListener.AdditionalAddresses = util.BuildAdditionalAddresses(actualWildcards[1:], uint32(lb.push.Mesh.ProxyListenPort))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. tests/integration/security/reachability_test.go

    			integIstioVersion := cMinIstioVersion
    			var migrationApp echo.Instances
    			// if dual stack is enabled, a dual stack echo config should be added
    			if !t.Settings().EnableDualStack {
    				// Create a custom echo deployment in NS1 with subsets that allows us to test the
    				// migration of a workload to istio (from no sidecar to sidecar).
    				migrationApp = deployment.New(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. tests/integration/pilot/gateway_test.go

    	}{
    		{
    			check: check.OK(),
    			from:  apps.B,
    			host:  "bar.example.com",
    		},
    		{
    			check: check.NotOK(),
    			from:  apps.B,
    			host:  "bar",
    		},
    	}
    	if t.Settings().EnableDualStack {
    		additionalTestCases := []struct {
    			check echo.Checker
    			from  echo.Instances
    			host  string
    		}{
    			// apps.D hosts a dual-stack service,
    			// apps.E hosts an ipv6 only service and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top