- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for serviceWaypointName (0.08 sec)
-
istioctl/pkg/writer/ztunnel/configdump/services.go
if !f { continue } if w.Status != "Healthy" { continue } healthyEndpoints++ } endpoints := fmt.Sprintf("%d/%d", healthyEndpoints, allEndpoints) waypoint := serviceWaypointName(svc, zDump.Services) fmt.Fprintf(w, "%v\t%v\t%v\t%v\t%v\n", svc.Namespace, svc.Name, strings.Join(ips, ","), waypoint, endpoints) } return w.Flush() }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 24 09:07:30 UTC 2024 - 3.2K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/workload.go
} for _, addr := range svc.Addresses { if addr == wl.Waypoint.Destination { return svc.Name } } } return "NA" // Shouldn't normally reach here } func serviceWaypointName(svc *ZtunnelService, services []*ZtunnelService) string { if svc.Waypoint == nil { return "None" } for _, service := range services {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 24 09:07:30 UTC 2024 - 4.2K bytes - Viewed (0)