Hizzy
Hizzy

Reputation: 879

Allowing All Pods In AKS Cluster To Talk To One Another

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?

Upvotes: 0

Views: 536

Answers (1)

4c74356b41
4c74356b41

Reputation: 72171

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.

Upvotes: 3

Related Questions