You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/aks-preview/HISTORY.rst
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,12 @@ To release a new version, please select a new version number (usually plus 1 to
11
11
12
12
Pending
13
13
+++++++
14
+
* Fix `match_condition` kwarg leaking to HTTP transport by overriding `put_mc` and `add_agentpool` to pass `if_match` / `if_none_match` directly to the vendored SDK. This change fixes the compatibility issue as azure-cli/acs module adopts TypeSpec emitted SDKs while azure-cli-extensions/aks-preview still uses the autorest emitted SDK.
15
+
16
+
19.0.0b27
17
+
+++++++
18
+
* `az aks nodepool add`: Fix `InvalidParameter` error when `mode` is `Machines`.
19
+
14
20
19.0.0b26
15
21
+++++++
16
22
* `az aks create/update`: Add `--enable-app-routing-istio` / `--disable-app-routing-istio` (short: `--enable-ari` / `--disable-ari`) flags to enable or disable Istio as a Gateway API implementation for App Routing.
Copy file name to clipboardExpand all lines: src/aks-preview/azext_aks_preview/_help.py
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -805,6 +805,25 @@
805
805
806
806
"""
807
807
808
+
helps['aks delete'] ="""
809
+
type: command
810
+
short-summary: Delete a managed Kubernetes cluster.
811
+
parameters:
812
+
- name: --if-match
813
+
type: string
814
+
short-summary: The value provided will be compared to the ETag of the managed cluster, if it matches the operation will proceed. If it does not match, the request will be rejected to prevent accidental overwrites.
815
+
- name: --if-none-match
816
+
type: string
817
+
short-summary: Not applicable for delete operations. This option will be ignored if provided.
818
+
- name: --ignore-pod-disruption-budget
819
+
type: bool
820
+
short-summary: Delete those pods on a node without considering Pod Disruption Budget.
821
+
examples:
822
+
- name: Delete a managed Kubernetes cluster.
823
+
text: az aks delete --name MyManagedCluster --resource-group MyResourceGroup
824
+
crafted: true
825
+
"""
826
+
808
827
helps['aks scale'] ="""
809
828
type: command
810
829
short-summary: Scale the node pool in a managed Kubernetes cluster.
0 commit comments