Open
Description
With Traefik installed in other namespaces (kube-system
with k3d for example), this command will not work.
kubectl get svc -n traefik -o jsonpath="{.items[0].status.loadBalancer.ingress[0]}"
A more resilient way would be look in any namespace:
kubectl get svc -A -o jsonpath="{.items[*].status.loadBalancer.ingress[*]}"