Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for RequiresLocalControlPlane (0.65 sec)

  1. pkg/test/framework/test.go

    	//
    	// Deprecated: All new tests should support multiple clusters.
    	RequiresSingleCluster() Test
    	// RequiresLocalControlPlane ensures that clusters are using locally-deployed control planes.
    	//
    	// Deprecated: Tests should not make assumptions regarding control plane topology.
    	RequiresLocalControlPlane() Test
    	// RequiresSingleNetwork ensures that clusters are in the same network
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. tests/integration/pilot/piggyback_test.go

    	"istio.io/istio/pkg/test/util/retry"
    )
    
    func TestPiggyback(t *testing.T) {
    	// nolint: staticcheck
    	framework.
    		NewTest(t).RequiresSingleCluster().
    		RequiresLocalControlPlane().
    		RequireIstioVersion("1.10.0").
    		Run(func(t framework.TestContext) {
    			workloads := []echo.Instances{apps.A, apps.Sotw}
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{Cluster: t.Clusters().Default()})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. tests/integration/pilot/cross_revision_test.go

    	if !f {
    		t.Skip("ISTIO_TEST_EXTRA_REVISIONS not specified")
    	}
    	extraRevs := strings.Split(rawExtraRevs, ",")
    
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleCluster().
    		RequiresLocalControlPlane().
    		Run(func(t framework.TestContext) {
    			namespaces := make([]revisionedNamespace, 0, len(extraRevs))
    			for _, rev := range extraRevs {
    				namespaces = append(namespaces, revisionedNamespace{
    					revision: rev,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. tests/integration/pilot/analysis/analysis_test.go

    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    func TestWait(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleCluster().
    		RequiresLocalControlPlane().
    		Run(func(t framework.TestContext) {
    			ns := namespace.NewOrFail(t, t, namespace.Config{
    				Prefix: "default",
    				Inject: true,
    			})
    			t.ConfigIstio().YAML(ns.Name(), `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. tests/integration/pilot/revisions/revision_tag_test.go

    	kubetest "istio.io/istio/pkg/test/kube"
    )
    
    func TestRevisionTags(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleCluster().
    		RequiresLocalControlPlane().
    		Run(func(t framework.TestContext) {
    			tcs := []struct {
    				name     string
    				tag      string
    				revision string
    				nsLabel  string
    				error    string
    			}{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. tests/integration/pilot/revisioned_upgrade_test.go

    func TestRevisionedUpgrade(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleCluster().
    		RequiresLocalControlPlane().
    		// Requires installation of CPs from manifests, won't succeed
    		// if existing CPs have different root cert
    		Label(label.CustomSetup).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. tests/integration/pilot/multi_version_revision_test.go

    // should test all possible revisioned namespace pairings to test traffic between all versions
    func TestMultiVersionRevision(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleCluster().
    		RequiresLocalControlPlane().
    		// Requires installation of CPs from manifests, won't succeed
    		// if existing CPs have different root cert
    		Label(label.CustomSetup).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. tests/integration/pilot/gateway_test.go

    // to make sure, in dual-stack scenarios both v4 and v6 probes are reachable.
    func TestGatewayReadinessProbes(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleCluster().
    		RequiresLocalControlPlane().
    		Run(func(t framework.TestContext) {
    			c := t.Clusters().Default()
    			var svc *corev1.Service
    			svc, _, err := testKube.WaitUntilServiceEndpointsAreReady(c.Kube(), "istio-system", "istio-ingressgateway")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  9. tests/integration/pilot/istioctl_test.go

    		t.Fatalf("Could not unmarshal %s response %s", context, s)
    	}
    	return val
    }
    
    func TestProxyStatus(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).RequiresSingleCluster().
    		RequiresLocalControlPlane(). // https://github.com/istio/istio/issues/37051
    		Run(func(t framework.TestContext) {
    			const timeoutFlag = "--timeout=10s"
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top