hi team, i
'm trying to add multiple path as my routing for ingress controller - app gateway for my private AKS cluster
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: one-ingress
annotations:
kubernetes.io/ingress.class: azure/application-gateway
appgw.ingress.kubernetes.io/backend-path-prefix: /
spec:
rules:
#- host: "20.xx.xx.xx"
- http:
paths:
- path: /path_1
backend:
serviceName: ui-one
servicePort: 80
- path: /master-service/
backend:
serviceName: one-master
servicePort: 80
but im not able to view application and error as below -

when i do describe pod - <error: endpoints "default-http-backend" not found>
and when I access only IP I can see welcome to nginx page, but when i add path to the error i same again 404...

