pkaramol
pkaramol

Reputation: 19402

kubernetes: providing explicit CIDRs for pods/services

A kubernetes cluster, unless I am wrong, incorporates 3 networks:

my question is whether at some point (i.e. when creating the cluster via say kops) one can provision for specific CIDRs for the two virtual nets

Upvotes: 0

Views: 100

Answers (1)

mosaic
mosaic

Reputation: 21

when you execute kubeadm init --pod-network-cidr 10.244.0.0/16,You provision CIDR for pods network.this network used by Flunnel or other CNI addon for routable . But service IP not need routable

Upvotes: 1

Related Questions