in helper/src/components/networkTab.js [40:56]
function UpdateCniOverlay(v) {
//update the networkPluginMode property, where this fn was called from
updateFn("networkPluginMode", v)
//update node subnet to a nice small /24 if overlay is enabled, otherwise use the default
if (v) {
updateFn("vnetAksSubnetAddressPrefix", "10.240.0.0/24")
} else {
updateFn("vnetAksSubnetAddressPrefix", defaults.net.vnetAksSubnetAddressPrefix)
}
if (v) {
updateFn("podCidr", '10.244.0.0/16')
} else {
updateFn("podCidr", defaults.net.podCidr)
}
}