Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SkipVMs (0.08 sec)

  1. 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)
  2. pkg/test/framework/resource/settings.go

    	// OpenShift indicates the tests run in an OpenShift platform rather than in plain Kubernetes.
    	OpenShift bool
    }
    
    // SkipVMs changes the skip settings at runtime
    func (s *Settings) SkipVMs() {
    	s.SkipVM = true
    	s.SkipWorkloadClasses = append(s.SkipWorkloadClasses, "vm")
    }
    
    // Skip checks whether a given class is skipped
    func (s *Settings) Skip(class string) 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)
  3. tests/integration/ambient/cnirepair/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.EnableCNI = true
    			cfg.DeployEastWestGW = false
    			cfg.ControlPlaneValues = `
    values:
      cni:
        repair:
          enabled: true
      ztunnel:
        terminationGracePeriodSeconds: 5
        env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. tests/integration/ambient/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.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)
Back to top