1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2025-12-12 17:26:19 +00:00
Files
geek-cookbook/docs/kubernetes/ingress/index.md
David Young 31be95b704 Fix (some) broken links
Signed-off-by: David Young <davidy@funkypenguin.co.nz>
2023-02-07 13:13:28 +13:00

942 B

description
description
What is a Kubernetes Ingress?

Ingresses

In Kubernetes, an Ingress is a way to describe how to route traffic coming into the cluster, so that (for example) https://radarr.example.com will end up on a [Radarr][radarr] pod, but https://sonarr.example.com will end up on a [Sonarr][sonarr] pod.

Ingress illustration

There are many popular Ingress Controllers, we're going to cover two equally useful options:

  1. Traefik
  2. Nginx

Choose at least one of the above (there may be valid reasons to use both! 1 ), so that you can expose applications via Ingress.

--8<-- "recipe-footer.md"


  1. One cluster I manage uses traefik Traefik for public services, but Nginx for internal management services such as Prometheus, etc. The idea is that you'd need one type of Ingress to help debug problems with the other type! ↩︎