DEV Community

Cover image for Kubernetes Ingress
Cloud Native Engineer
Cloud Native Engineer

Posted on • Originally published at kubernetes.io

Kubernetes Ingress

Unlock the Power of Kubernetes Ingress: Expose Your Services to the World!

Expose HTTP and HTTPS routes from outside the cluster to services within the cluster.

Key points:

  • Ingress Basics: An Ingress exposes HTTP and HTTPS routes from outside the cluster to services within the cluster.
  • Ingress Controller: An Ingress controller is responsible for fulfilling the Ingress, usually with a load balancer.
  • Exposing HTTP and HTTPS Traffic: Traffic routing is controlled by rules defined on the Ingress resource.
  • Load Balancing: Ingress may provide load balancing, SSL termination, and name-based virtual hosting.

Read more at: https://kubernetes.io/docs/concepts/services-networking/ingress/

Top comments (0)