Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for deployEastWestGW (0.22 sec)

  1. pkg/test/framework/components/istio/flags.go

    	flag.StringVar(&helmValues, "istio.test.kube.helm.values", helmValues,
    		"Manual overrides for Helm values file. Only valid when deploying Istio.")
    	flag.BoolVar(&settingsFromCommandline.DeployEastWestGW, "istio.test.kube.deployEastWestGW", settingsFromCommandline.DeployEastWestGW,
    		"Deploy Istio east west gateway into the target Kubernetes environment.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/config.go

    	result += fmt.Sprintf("TelemetryNamespace:             %s\n", c.TelemetryNamespace)
    	result += fmt.Sprintf("DeployIstio:                    %v\n", c.DeployIstio)
    	result += fmt.Sprintf("DeployEastWestGW:               %v\n", c.DeployEastWestGW)
    	result += fmt.Sprintf("Values:                         %v\n", c.Values)
    	result += fmt.Sprintf("PrimaryClusterIOPFile:          %s\n", c.PrimaryClusterIOPFile)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. tests/integration/ambient/untaint/main_test.go

    			t.Settings().Ambient = true
    			return nil
    		}).
    		Setup(istio.Setup(&i, func(ctx resource.Context, cfg *istio.Config) {
    			// can't deploy VMs without eastwest gateway
    			ctx.Settings().SkipVMs()
    			cfg.DeployEastWestGW = false
    			cfg.ControlPlaneValues = `
    components:
      cni:
        namespace: "kube-system"
    values:
      pilot:
        taint:
          enabled: true
          namespace: "kube-system"
        env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 14:58:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. tests/integration/ambient/cnirepair/main_test.go

    			return nil
    		}).
    		Setup(istio.Setup(&i, func(ctx resource.Context, cfg *istio.Config) {
    			// can't deploy VMs without eastwest gateway
    			ctx.Settings().SkipVMs()
    			cfg.EnableCNI = true
    			cfg.DeployEastWestGW = false
    			cfg.ControlPlaneValues = `
    values:
      cni:
        repair:
          enabled: true
      ztunnel:
        terminationGracePeriodSeconds: 5
        env:
          SECRET_TTL: 5m
    `
    		}, cert.CreateCASecretAlt)).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. tests/integration/ambient/main_test.go

    			return nil
    		}).
    		Setup(istio.Setup(&i, func(ctx resource.Context, cfg *istio.Config) {
    			// can't deploy VMs without eastwest gateway
    			ctx.Settings().SkipVMs()
    			cfg.EnableCNI = true
    			cfg.DeployEastWestGW = false
    			cfg.ControlPlaneValues = `
    values:
      cni:
        # The CNI repair feature is disabled for these tests because this is a controlled environment,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. tests/integration/README.md

    | -istio.test.kube.deploy | bool | Deploy Istio into the target Kubernetes environment. (default true). |
    | -istio.test.kube.deployEastWestGW | bool | Deploy Istio east west gateway into the target Kubernetes environment. (default true). |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/kube.go

    		// there are a few tests that require special gateway setup which will cause eastwest gateway fail to start
    		// exclude these tests from installing eastwest gw for now
    		if !i.cfg.DeployEastWestGW {
    			return nil
    		}
    
    		if err := i.deployEastWestGateway(c, i.primaryIOP.spec.Revision, i.eastwestIOP.file); err != nil {
    			return err
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top