# ingress-nginx — Kubernetes NGINX Ingress Controller > ingress-nginx is the community Kubernetes ingress controller built on NGINX, turning Ingress and Gateway API resources into production-ready HTTP/S and TCP load-balancer configuration. ## Install Save in your project root: # ingress-nginx — Kubernetes NGINX Ingress Controller ## Quick Use ```bash # Install with the official Helm chart helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx helm upgrade --install ingress-nginx ingress-nginx/ingress-nginx -n ingress-nginx --create-namespace # A minimal Ingress routing example.com to a ClusterIP service kubectl apply -f - <