File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/azure-cli/azure/cli/command_modules/acs Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1286,8 +1286,10 @@ def aks_upgrade(cmd,
12861286 return None
12871287 upgrade_all = True
12881288 else :
1289- msg = ("Since control-plane-only argument is specified, this will upgrade only the control plane to {}. "
1290- "Node pool will not change. Continue?" ).format (instance .kubernetes_version )
1289+ msg = ("Since control-plane-only argument is specified, this will upgrade only the kubernetes version of the control plane to {}. "
1290+ "Kubernetes versions of the node pools will remain unchanged, "
1291+ "but node image version may be upgraded if there has been cluster config change that requires VM reimage. "
1292+ "Continue?" ).format (instance .kubernetes_version )
12911293 if not yes and not prompt_y_n (msg , default = "n" ):
12921294 return None
12931295
You can’t perform that action at this time.
0 commit comments