Multiple Azure App Gateway for Different namespaces in Azure AKS

2/22/2019

I am trying to create an Application Gateway for AKS. My requirement is to create Multiple Application Gateways for each Namespace in AKS.

Is it possible to do so? And additionally can I use the Ingress controller for Load balancing for each namespace?

-- Manpreet
azure
azure-aks
azure-kubernetes
kubernetes

1 Answer

2/22/2019

to sum it up, you can attach application gateway (or multiple ones) like you normally would. application gateways are not aware of k8s primitives, so they cannot really route to the namespace, they will route to the node, and your ingress\service should handle it.

but there's an Application Gateway Ingress available (current not GA), which can do that for you. you will define ingress resources and it will configure application gateway according to those. Not sure if it can configure multiple of those, but you dont really need multiple unless you exceed inbound ports.

-- 4c74356b41
Source: StackOverflow