Is there any instance VM Scale Set private IP address change (Kubernetes Node)?

I have configured Kubernetes with 4 node and the IP addresses are assigned with some ranges

But in the VM Scale Set Instance each nodes are assigned with the static IP.

Will the private IP change at any instance? Why this range of IPs are assigned for a single node?

Upvotes: 0

Views: 219

Answers (1)

4c74356b41
4c74356b41

Reputation: 72171

No, they won't change at any point in time (well, when you upgrade your cluster you nodes will get recreated, so these IP addresses will get shuffled a bit). They are assigned because pods are getting assigned those IP addresses from the Virtual Network. By default 30 pods can run on a single host, so 30 + 1 (host IP address) IP addresses are assigned to each host.

But you shouldn't really depend on those IP addresses at all.

Upvotes: 1

Related Questions