Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for SetupSingleNamespace (0.28 sec)

  1. tests/integration/pilot/localwatcher/localsecretwatcher_test.go

    		Setup(istio.Setup(&i, func(t resource.Context, cfg *istio.Config) {
    			cfg.ControlPlaneValues = `
    values:
      pilot:
        env:
          LOCAL_CLUSTER_SECRET_WATCHER: "true"`
    		})).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{})).
    		Run()
    }
    
    func TestTraffic(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			common.RunAllTrafficTests(t, i, apps)
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. tests/integration/security/policy_attachment_only/main_test.go

    		).
    		SetupParallel(
    			jwt.Setup(&jwtServer, namespace.Future(&serverNS)),
    			authz.Setup(&authzServer, namespace.Future(&serverNS)),
    			authz.SetupLocal(&localAuthzServer, namespace.Future(&echo1NS)),
    			deployment.SetupSingleNamespace(&apps, deployment.Config{
    				IncludeExtAuthz: true,
    				Namespaces: []namespace.Getter{
    					namespace.Future(&echo1NS),
    				},
    			})).
    		Run()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. tests/integration/security/remote_jwks/main_test.go

    			return err
    		}).
    		Setup(namespace.Setup(&echoNS, namespace.Config{Prefix: "echo1", Inject: true})).
    		SetupParallel(
    			jwt.Setup(&jwtServer, namespace.Future(&systemNs)),
    			deployment.SetupSingleNamespace(&apps, deployment.Config{
    				Namespaces: []namespace.Getter{
    					namespace.Future(&echoNS),
    				},
    			})).
    		Run()
    }
    
    func setupConfig(ctx resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. tests/integration/security/https_jwt/main_test.go

    			return err
    		}).
    		Setup(namespace.Setup(&echoNS, namespace.Config{Prefix: "echo1", Inject: true})).
    		SetupParallel(
    			jwt.Setup(&jwtServer, namespace.Future(&systemNs)),
    			deployment.SetupSingleNamespace(&apps, deployment.Config{
    				Namespaces: []namespace.Getter{
    					namespace.Future(&echoNS),
    				},
    			})).
    		Run()
    }
    
    func setupConfig(ctx resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 09:55:58 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. tests/integration/security/ecc_signature_algorithm/main_test.go

    )
    
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		// Needed as it requires an environmental variable
    		Label(label.CustomSetup).
    		Setup(istio.Setup(&inst, setupConfig)).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{})).
    		Run()
    }
    
    func setupConfig(_ resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    	cfg.ControlPlaneValues = `
    values:
      meshConfig:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 05 22:29:44 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. tests/integration/pilot/main_test.go

    // here to reuse a single install across tests.
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		Setup(istio.Setup(&i, nil)).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{})).
    		Setup(func(t resource.Context) error {
    			gatewayConformanceInputs.Client = t.Clusters().Default()
    			gatewayConformanceInputs.Cleanup = !t.Settings().NoCleanup
    
    			return nil
    		}).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 08 22:15:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. tests/integration/security/sds_ingress/quic/ingress_test.go

    			// currently VM does not work in this test
    			err := ingressutil.SetupTest(ctx, &customConfig, namespace.Future(&echo1NS))
    			if err != nil {
    				return err
    			}
    			return nil
    		}).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{
    			Namespaces: []namespace.Getter{
    				namespace.Future(&echo1NS),
    			},
    			Configs: echo.ConfigFuture(&customConfig),
    		})).
    		Setup(func(ctx resource.Context) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/cni/cniversionskew_test.go

    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		Label(label.Postsubmit).
    		Label(label.CustomSetup).
    		RequireMultiPrimary().
    		Setup(istio.Setup(&i, nil)).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{})).
    		Run()
    }
    
    // installCNIOrFail installs CNI DaemonSet for the given version.
    // It looks for tar compressed CNI manifest and apply that in the cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. tests/integration/security/external_ca/main_test.go

    				}
    			}
    
    			cfg.ControlPlaneValues = generateConfigYaml(certs, false, isExternalControlPlane)
    			cfg.ConfigClusterValues = generateConfigYaml(certs, true, false)
    		})).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{})).
    		Run()
    	stopChan <- struct{}{}
    	close(stopChan)
    }
    
    func generateConfigYaml(certs []csrctrl.SignerRootCert, isConfigCluster bool, isExternalControlPlane bool) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/setup_test.go

    				},
    			},
    		},
    		TLSSettings: &common.TLSSettings{
    			ProxyProvision: true,
    		},
    		Ports: []echo.Port{},
    	}
    	echos = append(echos, prom)
    
    	if err := cdeployment.SetupSingleNamespace(&apps, cdeployment.Config{Configs: echo.ConfigFuture(&echos)})(ctx); err != nil {
    		return err
    	}
    
    	if err != nil {
    		return err
    	}
    	for _, c := range ctx.Clusters() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top