Skip to content

Commit bfb734e

Browse files
hao1939Hao Yuan
andauthored
hide the --enable-managed-system-pool option for now (#9278)
* hide the --enable-managed-system-pool optoin for now * add history * keep _help.py * fix style * update setup.py --------- Co-authored-by: Hao Yuan <hayua@microsoft.com>
1 parent ac57da8 commit bfb734e

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

src/aks-preview/HISTORY.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ Pending
1414
* Vendor new SDK and bump API version to 2025-08-02-preview.
1515
* Pre-deprecate `--enable-custom-ca-trust` and `--disable-custom-ca-trust` in `az aks create`, `az aks update` commands.
1616

17+
18.0.0b44
18+
+++++++
19+
* Hide `--enable-managed-system-pool` parameter for `az aks create` for now, as the feature is not ready yet.
20+
1721
18.0.0b43
1822
+++++++
1923
* Fix `--localdns-config` parameter to handle null values and case-insensitive JSON keys in DNS override sections, preventing crashes with malformed localdns configuration files.
@@ -45,7 +49,7 @@ Pending
4549
* Add option `AzureLinuxOSGuard` and `AzureLinux3OSGuard` to `--os-sku` for `az aks nodepool add` and `az aks nodepool update`.
4650
* Add machine command `az aks machine add` to add a machine to an existing machine pool.
4751
* Add blue-green upgrade strategy support for AKS node pools:
48-
- `az aks nodepool add/update/upgrade`: Add `--upgrade-strategy` parameter to switch between rolling and blue-green nodepool upgrades.
52+
- `az aks nodepool add/update/upgrade`: Add `--upgrade-strategy` parameter to switch between rolling and blue-green nodepool upgrades.
4953
- `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.
5054

5155
18.0.0b38

src/aks-preview/azext_aks_preview/_params.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1127,7 +1127,10 @@ def load_arguments(self, _):
11271127
# virtual machines
11281128
c.argument("vm_sizes", is_preview=True)
11291129
c.argument("enable_imds_restriction", action="store_true", is_preview=True)
1130-
c.argument("enable_managed_system_pool", action="store_true", is_preview=True)
1130+
c.argument("enable_managed_system_pool",
1131+
action="store_true",
1132+
is_preview=True,
1133+
deprecate_info=c.deprecate(target="--enable-managed-system-pool", hide=True))
11311134
c.argument("enable_upstream_kubescheduler_user_configuration", action="store_true", is_preview=True)
11321135

11331136
with self.argument_context("aks update") as c:

src/aks-preview/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from setuptools import find_packages, setup
1111

12-
VERSION = "18.0.0b43"
12+
VERSION = "18.0.0b44"
1313

1414
CLASSIFIERS = [
1515
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)