The lab question is “What is the POD IP address range configured by weave?” and the correct answer (according to the lab) is 10.X.X.X. If the ip addr show weave
command displays 10.244.0.1/16, why is the correct answer not 10.244.X.X?
You might actually be correct here. For weave, if you look at the configuration docs, the pod CIDR setting will be in the daemonset for weave-net:
containers:
- name: weave
env:
- name: IPALLOC_RANGE
value: 10.0.0.0/16
I’d expect that you’re going to find the setting is 10.244.0.0/16, but you’d need to check.
The correct answer is 10.X.X.X
because that is the only given answer that starts with 10.