Kubernetes - résolution DNS générique

Kubernetes DNS

Kubernetes - résolution DNS dans le même namespace

Kubernetes DNS

client$ curl http://service-web
Welcome to NGINX!
client$ curl http://service-web.application
Welcome to NGINX!
client$ curl http://service-web.application.svc
Welcome to NGINX!
client$ curl http://service-web.application.svc.cluster.local
Welcome to NGINX!

Kubernetes - résolution DNS dans des namespaces différents

Kubernetes DNS

client$ curl http://service-web
No resolution
client$ curl http://service-web.application
Welcome to NGINX!
client$ curl http://service-web.application.svc
Welcome to NGINX!
client$ curl http://service-web.application.svc.cluster.local
Welcome to NGINX!