Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for workloadName (0.11 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    							Uid:               s.podXdsName("pod3"),
    							Node:              "node1",
    							CanonicalName:     "other",
    							CanonicalRevision: "latest",
    							WorkloadType:      workloadapi.WorkloadType_POD,
    							WorkloadName:      "pod3",
    							ClusterId:         testC,
    							Status:            workloadapi.WorkloadStatus_HEALTHY,
    						},
    					},
    				},
    			},
    		})
    	}
    	s.assertEvent(t, s.podXdsName("pod2"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/connections.go

    			// fallback to None when a workload does not have an IP
    			ip = "None"
    		}
    		workloadNames[ip] = s.Name + "." + s.Namespace
    	}
    	lookupIP := func(addr string) string {
    		if filter.Raw {
    			return addr
    		}
    		ip, port, _ := net.SplitHostPort(addr)
    		if s, f := serviceNames[ip]; f {
    			return net.JoinHostPort(s, port)
    		}
    		if w, f := workloadNames[ip]; f {
    			return net.JoinHostPort(w, port)
    		}
    		return addr
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top