Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions src/aks-preview/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ To release a new version, please select a new version number (usually plus 1 to

Pending
+++++++

19.0.0b17
+++++++
* `az aks bastion`: Correctly configure `$KUBECONFIG` values for tunneling traffic into a private AKS cluster.
* Update user prompt for `az aks upgrade` command to clarify the implication of the `--control-plane-only` options.

19.0.0b16
+++++++
Expand Down
6 changes: 4 additions & 2 deletions src/aks-preview/azext_aks_preview/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -1708,8 +1708,10 @@ def aks_upgrade(cmd,
upgrade_all = True
else:
msg = (
"Since control-plane-only argument is specified, this will upgrade only the control plane to "
f"{instance.kubernetes_version}. Node pool will not change. Continue?"
"Since --control-plane-only parameter is specified, this will upgrade only the kubernetes version of the control plane to "
f"{instance.kubernetes_version}. 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?"
)
if not yes and not prompt_y_n(msg, default="n"):
return None
Expand Down
2 changes: 1 addition & 1 deletion src/aks-preview/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from setuptools import find_packages, setup

VERSION = "19.0.0b16"
VERSION = "19.0.0b17"

CLASSIFIERS = [
"Development Status :: 4 - Beta",
Expand Down
Loading