Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for NewOrFail (0.22 sec)

  1. pkg/test/framework/components/ambient/waypoint.go

    			}
    		})
    
    	}
    }
    
    func DeleteWaypoint(t framework.TestContext, ns namespace.Instance, waypoint string) {
    	istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    		"waypoint",
    		"delete",
    		"--namespace",
    		ns.Name(),
    		waypoint,
    	})
    	waypointError := retry.UntilSuccess(func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. tests/integration/pilot/tunneling_test.go

    		defer wg.Done()
    		waitForTunnelingRemovedOrFail(ctx, egressNs, egressLabel)
    	}()
    	wg.Wait()
    }
    
    func waitForTunnelingRemovedOrFail(ctx framework.TestContext, ns, app string) {
    	istioCtl := istioctl.NewOrFail(ctx, ctx, istioctl.Config{Cluster: ctx.Clusters().Default()})
    	podName := getPodName(ctx, ns, app)
    	args := []string{"proxy-config", "listeners", "-n", ns, podName, "-o", "json"}
    	retry.UntilSuccessOrFail(ctx, func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. tests/integration/operator/switch_cr_test.go

    	ManifestPathContainer = "/var/lib/istio/manifests"
    	iopCRFile             = ""
    )
    
    func TestController(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    			workDir, err := t.CreateTmpDirectory("operator-controller-test")
    			if err != nil {
    				t.Fatal("failed to create test directory")
    			}
    			cs := t.Clusters().Default()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    	framework.NewTest(t).Run(func(t framework.TestContext) {
    		istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    			"waypoint",
    			"apply",
    			"--namespace",
    			apps.Namespace.Name(),
    			"--name", "captured-waypoint",
    			"--wait",
    		})
    		t.Cleanup(func() {
    			istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    				"waypoint",
    				"delete",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top