Kubernetes - Networking
Given this CNI config snippet:
What IP subnet will pods get addresses from?
{
"cniVersion": "0.4.0",
"name": "mynet",
"type": "bridge",
"bridge": "cni0",
"ipMasq": true,
"ipam": {
"type": "host-local",
"subnet": "10.22.0.0/16"
}
}What IP subnet will pods get addresses from?
