Two small kubectl-parity additions to the panel-2 list view: Pods
gain the IP column from kubectl get pods -o wide, and Ingresses
gain the Address column that kubectl get ingress shows by default
but km8 was previously dropping.
Added
- Pod IP column. New
IPcell betweenAgeandNodecarrying
.status.podIP, matching thekubectl get pods -o widelayout.
Shows<none>while the kubelet hasn't reported one, again matching
kubectl. All three Pod row producers (fetchPods,
fetchPodsWithSelector,fetchPodsForPVC) were updated so
drill-downs from Deployments / ReplicaSets / Jobs / PVCs render the
IP column too — not just the top-level Pods view. - Ingress Address column. New
Addresscell betweenHostsand
Portscarrying.status.loadBalancer.ingress[*].ip|hostname,
joined by commas when multiple entries exist (same as kubectl's
default). Empty when no ingress controller has written status —
clusters without a controller will see the same empty cell that
kubectl get ingressshows.