Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for ISTIO_DUAL_STACK (0.23 sec)

  1. operator/pkg/util/testdata/yaml/input/convention_boolean.yaml

    kind: IstioOperator
    metadata:
      name: istio
    spec:
      profile: default
      meshConfig:
        defaultConfig:
          proxyMetadata:
            ISTIO_DUAL_STACK: false
            PROXY_XDS_VIA_AGENT: false
      values:
        pilot:
          env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 23 16:28:53 UTC 2023
    - 292 bytes
    - Viewed (0)
  2. operator/pkg/util/testdata/yaml/output/convention_boolean.yaml

    kind: IstioOperator
    metadata:
      name: istio
    spec:
      profile: default
      meshConfig:
        defaultConfig:
          proxyMetadata:
            ISTIO_DUAL_STACK: "false"
            PROXY_XDS_VIA_AGENT: "false"
      values:
        pilot:
          env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 23 16:28:53 UTC 2023
    - 296 bytes
    - Viewed (0)
  3. tests/integration/security/policy_attachment_only/main_test.go

    `
    			} else {
    				cfg.ControlPlaneValues = `
    values:
      pilot: 
        env: 
          PILOT_JWT_ENABLE_REMOTE_JWKS: true
          ISTIO_DUAL_STACK: true
          ENABLE_SELECTOR_BASED_K8S_GATEWAY_POLICY: false
    meshConfig:
      defaultConfig:
        proxyMetadata:
          ISTIO_DUAL_STACK: "true"
        gatewayTopology:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. releasenotes/notes/43892.yaml

    for Dual Stack to set up the correct DNS family type. 1. `CheckIPFamilyTypeForFirstIPs` has been added to help confirm the IP family type based on the first IP address. 2. Uniform the Dual Stack feature flags for both control and data plane to `ISTIO_DUAL_STACK` with the same environment variable....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 10:52:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. operator/pkg/manifest/shared_test.go

    		convertPaths []string
    	}{
    		{
    			name:         "convention_boolean",
    			convertPaths: defaultSetFlagConvertPaths,
    			inputFlags: []string{
    				"meshConfig.defaultConfig.proxyMetadata.ISTIO_DUAL_STACK=false",
    				"meshConfig.defaultConfig.proxyMetadata.PROXY_XDS_VIA_AGENT=false",
    			},
    		}, {
    			name:         "convention_integer",
    			convertPaths: defaultSetFlagConvertPaths,
    			inputFlags: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 23 16:28:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/cmd/root.go

    	flag.BindEnv(fs, constants.DualStack, "", "Enable ipv4/ipv6 redirects for dual-stack.", &cfg.DualStack)
    	// Allow binding to a different var, for consistency with other components
    	flag.AdditionalEnv(fs, constants.DualStack, "ISTIO_DUAL_STACK")
    
    	flag.BindEnv(fs, constants.CaptureAllDNS, "",
    		"Instead of only capturing DNS traffic to DNS server IP, capture all DNS traffic at port 53. This setting is only effective when redirect dns is enabled.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. cni/pkg/plugin/sidecar_redirect.go

    		redir.dnsRedirect, valErr = strconv.ParseBool(v)
    		if valErr != nil {
    			log.Warnf("cannot parse DNS capture environment variable %v", valErr)
    		}
    	}
    	if v, found := pi.ProxyEnvironments["ISTIO_DUAL_STACK"]; found {
    		// parse and set the bool value of dnsRedirect
    		redir.dualStack, valErr = strconv.ParseBool(v)
    		if valErr != nil {
    			log.Warnf("cannot parse dual stack environment variable %v", valErr)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. 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)
  9. pkg/test/framework/components/istio/kube.go

    	if cfg.EnableCNI {
    		args.AppendSet("components.cni.enabled", "true")
    	}
    
    	if ctx.Settings().EnableDualStack {
    		args.AppendSet("values.pilot.env.ISTIO_DUAL_STACK", "true")
    		args.AppendSet("meshConfig.defaultConfig.proxyMetadata.ISTIO_DUAL_STACK", "true")
    		args.AppendSet("values.gateways.istio-ingressgateway.ipFamilyPolicy", "RequireDualStack")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. cni/pkg/plugin/plugin_test.go

    	pod, ns := buildFakePodAndNSForClient()
    	pod.ObjectMeta.Annotations[sidecarStatusKey] = "true"
    	pod.Spec.Containers = []corev1.Container{
    		{
    			Name: "istio-proxy",
    			Env:  []corev1.EnvVar{{Name: "ISTIO_DUAL_STACK", Value: "true"}},
    		}, {Name: "mockContainer"},
    	}
    
    	mockIntercept := testDoAddRun(t, buildMockConf(true, ""), testNSName, pod, ns)
    
    	if len(mockIntercept.lastRedirect) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top