SECURITY WARNING: Never run commands you don't understand. Always review code before execution. Use at your own risk.
Ingress New Added 19 September 2026

Ingress: ADDRESS column stays empty and the host never resolves

kubectl get ingress shows no address because no controller has claimed the object, so nothing ever programmes a load balancer or writes the status back. The Ingress itself is valid, which is why it is accepted without complaint and then does nothing at all.

Quick fix

Read the commands before running them. Anything that restarts a service, deletes data or changes permissions should be tried on a non-production system first.

Quick fix
# Is any controller watching, and did this Ingress get claimed
kubectl get pods -n ingress-nginx
kubectl describe ingress web | tail -20     # events are empty when unclaimed

# ingressClassName is required from networking.k8s.io/v1, the old annotation is ignored
kubectl get ingressclass
kubectl patch ingress web --type=merge -p '{"spec":{"ingressClassName":"nginx"}}'

# A controller scoped to one class ignores everything else, including the default
kubectl get deploy -n ingress-nginx ingress-nginx-controller -o yaml | grep -- --ingress-class

# On a bare metal cluster the LoadBalancer service has no address to publish either
kubectl get svc -n ingress-nginx      # EXTERNAL-IP <pending> means no provider

# Cloud clusters: the controller needs the annotation the provider expects,
# and the node security group must allow the health check port

How to diagnose Ingress errors

An Ingress failure is a routing failure, and there are only a few places it can break: the IngressClass is missing so no controller claims the resource, the path or host does not match, the backing Service has no endpoints, or the TLS secret is absent or in the wrong namespace. The "default backend - 404" page is the controller saying it received the request but found no rule for it.

If the quick fix above does not resolve it, work through these steps. They apply to this whole class of error, not just to this one message, which is usually what saves the time.

  1. Work backwards from the pod: kubectl get endpoints <service>. If it is empty, the Service selector does not match any ready pod and no Ingress configuration will help.
  2. Check that a controller has claimed the Ingress: kubectl describe ingress <name> should show events and an assigned address. No address means no controller is watching that IngressClass.
  3. Read the controller's own logs (kubectl logs -n ingress-nginx deploy/ingress-nginx-controller). They log rejected configuration and certificate problems explicitly.
  4. Remember TLS secrets must live in the same namespace as the Ingress. This is the single most common TLS mistake.
  5. Verify path type semantics: Prefix, Exact and ImplementationSpecific match differently, and regex behaviour varies between controllers.

Tools worth reaching for

  • kubectl describe ingress
  • kubectl get endpoints
  • controller logs
  • curl -H 'Host: …'
  • openssl s_client -servername

Authoritative references

Primary documentation for this error, worth reading before applying any fix in production.

kubernetes.io kubernetes.io

Related Ingress errors

See all 11 Ingress errors →

Browse other categories

Something missing or wrong?

This entry is maintained by hand. If the fix is out of date, incomplete, or you have a better one, email a correction and it will be reviewed.