એક Ingress એ Kubernetes object છે જે HTTP/HTTPS routing નિયમો વ્યાખ્યાયિત કરે છે — hostnames અને URL paths ને backend Services સાથે mapping કરે છે. તે એક Ingress Controller (nginx, Traefik, cloud gateways) દ્વારા પૂરું પડાય છે અને દરેક service દીઠ LoadBalancer ને બદલે એક entry point, 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.
