IP usage in Kubernetes cluster

Viewed 64

I have an aks cluster with a single nodepool with azure cni network plugin and a subnet of /21 around 2000 ip's dedicated for this single nodepool. This nodepool is configured with 3 availability zones.

Consider I have another cluster with a single nodepool with the configuration same as above but for the nodepool availability zone is set to none.

Workloads are the same in both the nodepools. but will the nodepool deployed in 3 availability zones consume more ip's compared to the one deployed in the availability zone set to None

1 Answers

AZ is for high Availability separated by a physical boundary within the region, Yes, It will consume separate IP's for each Node Pool. Selecting more than one availability zone will create same number of node pool and Consume same number of IP's. I have tested in my environment with 3 AZ it occupied my 3 Ip's address from the selected subnet.

Related