- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for GetMatch (0.06 sec)
-
istioctl/pkg/writer/envoy/configdump/listener.go
return "" } vh := er.GetVirtualHosts()[0] if !reflect.DeepEqual(vh.Domains, []string{"*"}) { return "" } if len(vh.GetRoutes()) != 1 { return "" } r := vh.GetRoutes()[0] if r.GetMatch().GetPrefix() != "/" { return "" } a, ok := r.GetAction().(*route.Route_Route) if !ok { return "" } cl, ok := a.Route.ClusterSpecifier.(*route.RouteAction_Cluster) if !ok { return ""
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Nov 29 12:37:14 UTC 2023 - 18.1K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/route.go
if !isPassthrough(r.GetAction()) { fmt.Fprintf(w, "%v\t%s\t%s\t%s\t%s\n", route.Name, vhosts.Name, describeRouteDomains(vhosts.GetDomains()), describeMatch(r.GetMatch()), describeManagement(r.GetMetadata())) } } if len(vhosts.Routes) == 0 { fmt.Fprintf(w, "%v\t%s\t%s\t%s\t%s\n", route.Name, vhosts.Name,
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 08 20:44:50 UTC 2024 - 7.2K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/configdump.go
version = buildVersion.GetVersion() md = buildVersion.GetMetadata().GetFields() sb strings.Builder ) fmt.Fprintf(&sb, "%d.%d.%d", version.GetMajorNumber(), version.GetMinorNumber(), version.GetPatch()) if label, ok := md[buildLabelKey]; ok { fmt.Fprintf(&sb, "-%s", label.GetStringValue()) } if status, ok := md[statusKey]; ok { fmt.Fprintf(&sb, "/%s", status.GetStringValue()) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Feb 29 20:46:41 UTC 2024 - 7.4K bytes - Viewed (0)