Does NGiNX Ingress Controller of Azure Kubernetes support multiple protocol

1/10/2019

I am looking for a one stop solution to support multiple protocol request to my backend, such as MSMQ, HTTP, MQTT. Can I achieve this using Azure Kubernetes NGiNX ingress controller?

-- shebinap
azure
azure-kubernetes
msmq
nginx-ingress

1 Answer

1/10/2019

Nginx ingress only supports HTTP, TCP and UDP:

https://kubernetes.github.io/ingress-nginx/user-guide/exposing-tcp-udp-services/#exposing-tcp-and-udp-services

so if you treat those as tcp or udp (whatever they use, I'm not familiar with those) you can achieve that.

-- 4c74356b41
Source: StackOverflow