Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/azure-cli/azure/cli/command_modules/acs/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -1286,8 +1286,10 @@ def aks_upgrade(cmd,
return None
upgrade_all = True
else:
msg = ("Since control-plane-only argument is specified, this will upgrade only the control plane to {}. "
"Node pool will not change. Continue?").format(instance.kubernetes_version)
msg = ("Since --control-plane-only parameter is specified, this will upgrade only the kubernetes version of the control plane to {}. "
"Kubernetes versions of the node pools will remain unchanged, "
"but node image version may be upgraded if there has been cluster config change that requires VM reimage. "
"Continue?").format(instance.kubernetes_version)
if not yes and not prompt_y_n(msg, default="n"):
return None

Expand Down