Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for RequireMultiPrimary (0.23 sec)

  1. tests/integration/pilot/mcs/autoexport/autoexport_test.go

    )
    
    var (
    	i     istio.Instance
    	echos common.EchoDeployment
    )
    
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    		RequireMultiPrimary().
    		RequireMinVersion(17).
    		Setup(common.InstallMCSCRDs).
    		Setup(istio.Setup(&i, enableMCSAutoExport)).
    		Setup(common.DeployEchosFunc("se", &echos)).
    		Run()
    }
    
    func TestAutoExport(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. tests/integration/pilot/revisions/revisions_test.go

    // here to reuse a single install across tests.
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		RequireMultiPrimary().
    		// Requires two CPs with specific names to be configured.
    		Label(label.CustomSetup).
    		Setup(istio.Setup(nil, func(_ resource.Context, cfg *istio.Config) {
    			cfg.ControlPlaneValues = `
    revision: stable
    `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 27 15:52:38 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. tests/integration/security/sds_ingress/quic/ingress_test.go

    func TestMain(m *testing.M) {
    	// Integration test for the ingress SDS Gateway flow.
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		// Need support for MixedProtocolLBService
    		RequireMinVersion(20).
    		RequireMultiPrimary().
    		Setup(istio.Setup(&inst, func(_ resource.Context, cfg *istio.Config) {
    			cfg.PrimaryClusterIOPFile = istio.IntegrationTestDefaultsIOPWithQUIC
    		})).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. pkg/test/framework/suite.go

    	//
    	// Deprecated: All new tests should support multiple clusters.
    	RequireSingleCluster() Suite
    	// RequireMultiPrimary ensures that each cluster is running a control plane.
    	//
    	// Deprecated: All new tests should work for any control plane topology.
    	RequireMultiPrimary() Suite
    	// SkipExternalControlPlaneTopology skips the tests in external plane and config cluster topology
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. tests/integration/pilot/cni/cniversionskew_test.go

    				common.RunAllTrafficTests(t, i, apps)
    			}
    		})
    }
    
    func TestMain(m *testing.M) {
    	// 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.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. tests/integration/pilot/multiplecontrolplanes/main_test.go

    )
    
    // TestMain defines the entrypoint for multiple controlplane tests using revisions and discoverySelectors.
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		RequireMultiPrimary().
    		// Requires two CPs with specific names to be configured.
    		Label(label.CustomSetup).
    		// We are deploying two isolated environments, which CNI doesn't support.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. tests/integration/security/file_mounted_certs/main_test.go

    	}
    `
    )
    
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    		RequireSingleCluster().
    		RequireMultiPrimary().
    		Setup(istio.Setup(&inst, setupConfig, CreateCustomIstiodSecret)).
    		Setup(namespace.Setup(&echo1NS, namespace.Config{Prefix: "echo1", Inject: true})).
    		Setup(func(ctx resource.Context) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top