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
6 changes: 5 additions & 1 deletion src/aks-preview/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ To release a new version, please select a new version number (usually plus 1 to
Pending
+++++++

18.0.0b44
Comment thread
hao1939 marked this conversation as resolved.
+++++++
* Hide `--enable-managed-system-pool` parameter for `az aks create` for now, as the feature is not ready yet.

18.0.0b43
+++++++
* Fix `--localdns-config` parameter to handle null values and case-insensitive JSON keys in DNS override sections, preventing crashes with malformed localdns configuration files.
Expand Down Expand Up @@ -43,7 +47,7 @@ Pending
* Add option `AzureLinuxOSGuard` and `AzureLinux3OSGuard` to `--os-sku` for `az aks nodepool add` and `az aks nodepool update`.
* Add machine command `az aks machine add` to add a machine to an existing machine pool.
* Add blue-green upgrade strategy support for AKS node pools:
- `az aks nodepool add/update/upgrade`: Add `--upgrade-strategy` parameter to switch between rolling and blue-green nodepool upgrades.
- `az aks nodepool add/update/upgrade`: Add `--upgrade-strategy` parameter to switch between rolling and blue-green nodepool upgrades.
- `az aks nodepool add/update/upgrade`: Add `--drain-batch-size`, `--drain-timeout-bg`, `--batch-soak-duration`, `--final-soak-duration` parameters to configure blue-green upgrade settings.

18.0.0b38
Expand Down
5 changes: 4 additions & 1 deletion src/aks-preview/azext_aks_preview/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -1127,7 +1127,10 @@ def load_arguments(self, _):
# virtual machines
c.argument("vm_sizes", is_preview=True)
c.argument("enable_imds_restriction", action="store_true", is_preview=True)
c.argument("enable_managed_system_pool", action="store_true", is_preview=True)
c.argument("enable_managed_system_pool",
action="store_true",
is_preview=True,
deprecate_info=c.deprecate(target="--enable-managed-system-pool", hide=True))
c.argument("enable_upstream_kubescheduler_user_configuration", action="store_true", is_preview=True)

with self.argument_context("aks update") as c:
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 = "18.0.0b43"
VERSION = "18.0.0b44"

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