- Home
- All questions
- Question 545
CKA study material · question 545 of 1000
An engineer installs a CNI plugin whose manifest assumes 10.244.0.0/16, but Pods never get addresses in that range. What was most likely missed at kubeadm init?
Show the answer
Answer: B. --pod-network-cidr matching the plugin's range
Some Pod network add-ons require a specific Pod CIDR, and kubeadm init takes --pod-network-cidr for exactly that; the value has to match what the plugin's manifest assumes.
Source: Creating a cluster with kubeadm (Kubernetes) — Initializing your control-plane node