- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for workloadUid (0.09 sec)
-
istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Apr 16 03:28:36 UTC 2024 - 33.1K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/api.go
Mode string `json:"mode"` RoutingPreferences []string `json:"routingPreferences"` HealthPolicy string `json:"healthPolicy"` } type ZtunnelEndpoint struct { WorkloadUID string `json:"workloadUid"` Service string `json:"service"` Address string `json:"address,omitempty"` Port map[uint16]uint16 `json:"port"` } type ZtunnelService struct {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 30 17:26:39 UTC 2024 - 6.1K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/services.go
_, ip, _ := strings.Cut(addr, "/") ips = append(ips, ip) } allEndpoints := len(svc.Endpoints) healthyEndpoints := 0 for _, ep := range svc.Endpoints { w, f := workloadsByUID[ep.WorkloadUID] if !f { continue } if w.Status != "Healthy" { continue } healthyEndpoints++ } endpoints := fmt.Sprintf("%d/%d", healthyEndpoints, allEndpoints)
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/workload/workload.go
namespace = ctx.Namespace() workloadCmd := &cobra.Command{ Use: "workload", Short: "Commands to assist in configuring and deploying workloads running on VMs and other non-Kubernetes environments", Example: ` # workload group yaml generation istioctl x workload group create # workload entry configuration generation istioctl x workload entry configure`, } workloadCmd.AddCommand(groupCommand(ctx))
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 16:31:46 UTC 2024 - 25.3K bytes - Viewed (0)