Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -17,6 +17,10 @@ Pending
* `az aks list-vm-skus`: New command to list available VM SKUs for AKS clusters in a given region.
* Add managed GPU enablement option to node pool property in `az aks nodepool add` and `az aks nodepool update`.

19.0.0b28
+++++++
Comment thread
xmzhao0822 marked this conversation as resolved.
Outdated
* `az aks namespace update`: Fix location should use existing namespace location.
Comment thread
xmzhao0822 marked this conversation as resolved.
Outdated
Comment thread
xmzhao0822 marked this conversation as resolved.

19.0.0b27
+++++++
* `az aks nodepool add`: Fix `InvalidParameter` error when `mode` is `Machines`.
Expand Down
2 changes: 1 addition & 1 deletion src/aks-preview/azext_aks_preview/managednamespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def aks_managed_namespace_update(cmd, client, raw_parameters, headers, existedNa
namespace_name = raw_parameters.get("name")

namespace_config = updateNamespace(cmd, raw_parameters, existedNamespace)
namespace_config.location = get_cluster_location(cmd, resource_group_name, cluster_name)
namespace_config.location = existedNamespace.location

Comment thread
xmzhao0822 marked this conversation as resolved.
return sdk_no_wait(
no_wait,
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.0b27"
VERSION = "19.0.0b28"

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