AKS & Application Gateway: Expose more than one service in an ingress resource

Carlos Mendible
Code it Yourself...
1 min readApr 16, 2019

If you install the Azure Aplication Gateway Ingress Controller for your AKS clusters you may want to expose more than one service through the same Public IP just changing the url path. In order to make this work you must use the backend-path-prefix annotation.

In the following sample I create an ingress with the following behavior:

  1. Calls to http://[Waf Pulic IP or DNS]/inventory are sent to the inventory service
  2. Calls to http://[Waf Pulic IP or DNS]/orders are sent to the orders service
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: backend-ingress
annotations:
# Service are serving content in this path.
appgw.ingress.kubernetes.io/backend-path-prefix: "/"
kubernetes.io/ingress.class: azure/application-gateway
spec:
rules:
- http:
paths:
- path: /inventory/*
backend:
serviceName: inventory
servicePort: 80
- path: /orders/*
backend:
serviceName: orders
servicePort: 80

Note that the appgw.ingress.kubernetes.io/backend-path-prefix value is set to: / which means that the paths specified in the rules are rewritten to this value qhen sent to your services.

Hope it helps.

This article was originally posted on my own site.

--

--

Carlos Mendible
Code it Yourself...

Cloud Solution Architect @Microsoft | Former Azure and Developer Technologies Microsoft MVP | Opinions are my own