Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WaypointName (0.12 sec)

  1. istioctl/pkg/waypoint/waypoint.go

    		if ctx.Namespace() == "" && !forApply {
    			ns = ""
    		}
    		// If a user sets the waypoint name to an empty string, set it to the default namespace waypoint name.
    		if waypointName == "" {
    			waypointName = constants.DefaultNamespaceWaypoint
    		} else if waypointName == "none" {
    			return nil, fmt.Errorf("invalid name provided for waypoint, 'none' is a reserved value")
    		}
    		gw := gateway.Gateway{
    			TypeMeta: metav1.TypeMeta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/workload.go

    	})
    
    	fmt.Fprintln(w, "NAMESPACE\tPOD NAME\tIP\tNODE\tWAYPOINT\tPROTOCOL")
    
    	for _, wl := range verifiedWorkloads {
    		var ip string
    		if len(wl.WorkloadIPs) > 0 {
    			ip = wl.WorkloadIPs[0]
    		}
    		waypoint := waypointName(wl, zDump.Services)
    		fmt.Fprintf(w, "%v\t%v\t%v\t%v\t%v\t%v\n",
    			wl.Namespace, wl.Name, ip, wl.Node, waypoint, wl.Protocol)
    
    	}
    	return w.Flush()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

      - from:
        - source:
            principals: ["cluster.local/ns/{{.Namespace}}/sa/{{.WaypointName}}"]
    `
    			}
    			waypointName := "none"
    			switch {
    			case dst.Config().HasServiceAddressedWaypointProxy():
    				waypointName = dst.Config().ServiceWaypointProxy
    			case dst.Config().HasWorkloadAddressedWaypointProxy():
    				waypointName = dst.Config().WorkloadWaypointProxy
    			}
    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