Skip to content
Closed
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 @@ -14,6 +14,10 @@ Pending
* Add `--node-provisioning-default-pools` to the `az aks update` command.
* Add `--node-provisioning-default-pools` to the `az aks create` command.

18.0.0b14
+++++++
* Add preview flag for `az aks namespace`.

18.0.0b13
+++++++
* Add option `--enable-http-proxy` to `az aks update`.
Expand Down
1 change: 1 addition & 0 deletions src/aks-preview/azext_aks_preview/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ def load_command_table(self, _):
"aks namespace",
managed_namespaces_sdk,
client_factory=cf_managed_namespaces,
is_preview=True,
) as g:
g.custom_command("add", "aks_namespace_add", supports_no_wait=True)
g.custom_command("update", "aks_namespace_update", supports_no_wait=True)
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 setup, find_packages

VERSION = "18.0.0b13"
VERSION = "18.0.0b14"

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