Noah Ispas
Noah Ispas

Reputation: 180

AKS - Using Azure App Gateway in front of Traefik Ingress

I have the following scenario:

Now I want to have an Azure App Gateway in front of Traefik, which does TLS termination and routes every traffic to Traefik Ingress Controller. Unfortunately, I could not find the right configuration or any docs to make it happen. Can you guys hint me in the right direction?

Upvotes: 0

Views: 1541

Answers (1)

LarryX
LarryX

Reputation: 641

Since both does the same L7 load balancing/routing/Tls Termination. I would suggest deleting the traefik and use Application Gateway Ingress Controller Instead.

https://azure.github.io/application-gateway-kubernetes-ingress/

Pros: You get one less component in the system Cons: Locked in to Azure, difficult to port out

If you still want to keep both, it is pretty straightforward configuration as you get a static ip(or DNS) that can be put in the backend pool of Application gateway.

Upvotes: 0

Related Questions