Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DeleteWaypoint (0.16 sec)

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

    			if err := doLabel(oldLabels); err != nil {
    				scopes.Framework.Errorf("failed resetting waypoint for %s/%s; this will likely break other tests", ns.Name(), service)
    			}
    		})
    
    	}
    }
    
    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,
    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. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s.deletePod(t, "pod2")
    	s.assertEvent(t, s.podXdsName("pod2"))
    
    	s.deleteWaypoint(t, "waypoint-ns")
    	s.assertEvent(t, s.podXdsName("pod1"))
    	s.deleteService(t, "waypoint-ns")
    	s.assertEvent(t,
    		s.podXdsName("waypoint-ns-pod"),
    		s.svcXdsName("waypoint-ns"))
    
    	s.deleteWaypoint(t, "waypoint-sa2")
    	s.assertEvent(t, s.podXdsName("pod4"))
    	s.deleteService(t, "waypoint-sa2")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_workloadentry_test.go

    		netip.MustParseAddr("10.0.0.2").AsSlice())
    
    	s.deleteWorkloadEntry(t, "name6")
    	s.assertEvent(t, s.wleXdsName("name6"))
    
    	s.deleteWaypoint(t, "waypoint-ns")
    	s.ns.Update(&corev1.Namespace{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: testNS,
    			Labels: map[string]string{
    				constants.AmbientUseWaypointLabel: "none",
    			},
    		},
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top