Allowing All Pods In AKS Cluster To Talk To One Another

12/11/2019

Trying to find a good way to allow open communications across all my pods in the same node. It's a micro service architecture and want them to interact with each other. Would rather not use a NSG and let this be dynamic. Are there any good patterns out there using K8 networking or ingress controllers?

-- Hizzy
azure-kubernetes
kubernetes-networking
kubernetes-pod

1 Answer

12/12/2019

Kubernetes is designed in such a fashion that any pod can talk to any pod. This is possible be default in kubernetes, you dont have to do anything to achieve this.

-- 4c74356b41
Source: StackOverflow