Kubernetes - Kube DNS résolution
Alasta 19 Juillet 2025 kubernetes kubernetes dns
Description : Kubernetes, la gestion de la résolution DNS
Kubernetes - résolution DNS générique

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

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

client$ curl http://service-web
No resolutionclient$ 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!