in helper/src/components/clusterTab.js [53:67]
function UpdateOsType(v) {
//update the OSType property, where this fn was called from
updateFn("osType", v)
//provide windows node pool optimised settings
if (v==='Windows') {
updateFn("nodepoolName", "npwin1")
updateFn("vmSize", "Standard_DS4_v2")
updateFn("osSKU", "Windows2022")
} else {
updateFn("nodepoolName", defaults.cluster.nodepoolName)
updateFn("vmSize", defaults.cluster.vmSize)
updateFn("osSKU", defaults.cluster.osSKU)
}
}