One Developer
One Developer

Reputation: 566

Azure kubernetes - Azure CNI & Istio, sidecar IP allocation?

Our Azure kubernetes cluster is configured with Azure CNI for networking which uses the subnet with CIDR: /21.

As we are planning to deploy Istio service mesh and additional sidecars for log shipping, how would those impact the available IPs? Would those consume the IPs? If so, how to avoid the IP congestion?

Upvotes: 0

Views: 229

Answers (1)

4c74356b41
4c74356b41

Reputation: 72191

Kubernetes allocates a single IP per pod, so no matter how many sidecars you have, a single pod will only have a single IP. Basically, you dont need to do anything in this regard

Upvotes: 4

Related Questions