Ingress हा एक Kubernetes object आहे जो HTTP/HTTPS routing नियम परिभाषित करतो — hostnames आणि URL paths ला backend Services शी जोडतो. तो एका 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.
