Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RequiresLocalControlPlane (0.35 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/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)
  3. 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