একটি Ingress হলো একটি Kubernetes object যা HTTP/HTTPS routing নিয়ম সংজ্ঞায়িত করে — hostname ও URL path-কে backend Service-এ ম্যাপ করে। এটি একটি Ingress Controller (nginx, Traefik, cloud gateway) দ্বারা পূরণ করা হয় এবং আপনাকে প্রতি service-এ একটি LoadBalancer-এর বদলে একটি প্রবেশদ্বার, TLS termination, ও host/path routing দেয়।
Ingress যে সমস্যা সমাধান করে
Exposing many services with type: LoadBalancer means MANY cloud LBs (and public IPs)
— expensive, and no shared hostname/path routing or TLS.
Ingress gives ONE entry point that routes by host & path to internal ClusterIP Services.
