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
+15-6Lines changed: 15 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,22 +11,31 @@ To release a new version, please select a new version number (usually plus 1 to
11
11
12
12
Pending
13
13
+++++++
14
-
* Add support for `ManagedSystem` Agent Pool Mode.
15
14
16
-
18.0.0b19
15
+
18.0.0b22
17
16
+++++++
18
-
- Add `--localdns-config` to `az aks nodepool add` and to `az aks nodepool update` to support configuring a local DNS profile for agent pools.
17
+
* Vendor new SDK and bump API version to 2025-06-02-preview.
19
18
19
+
18.0.0b21
20
+
+++++++
21
+
* Add command `az aks bastion` to enable connections to managed Kubernetes clusters via Azure Bastion.
20
22
21
-
18.0.0b18
23
+
18.0.0b20
22
24
+++++++
23
-
* Add validation error when neither --location or --cluster and --resource-group-name are specified for az extension type list or az extension type version list
25
+
* Fix the bug affecting VMAS to VMS migration in the `az aks update` command using the `--migrate-vmas-to-vms` option.
24
26
27
+
18.0.0b19
28
+
+++++++
29
+
* Add support for `ManagedSystem` Agent Pool Mode.
30
+
* Add `--localdns-config` to `az aks nodepool add` and to `az aks nodepool update` to support configuring a local DNS profile for agent pools.
25
31
32
+
18.0.0b18
33
+
+++++++
34
+
* Add validation error when neither --location or --cluster and --resource-group-name are specified for az extension type list or az extension type version list
26
35
27
36
18.0.0b17
28
37
+++++++
29
-
* Remove `__import__('pkg_resources').declare_namespace(__name__)` from `vendored_sdks/__init__.py`` to fix the namespace package issue.
38
+
* Remove `__import__('pkg_resources').declare_namespace(__name__)` from `vendored_sdks/__init__.py` to fix the namespace package issue.
Copy file name to clipboardExpand all lines: src/aks-preview/azext_aks_preview/_help.py
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3864,3 +3864,24 @@
3864
3864
- name: Show details of a load balancer configuration in table format
3865
3865
text: az aks loadbalancer show -g MyResourceGroup -n kubernetes --cluster-name MyManagedCluster -o table
3866
3866
"""
3867
+
3868
+
helps['aks bastion'] ="""
3869
+
type: command
3870
+
short-summary: Connect to a managed Kubernetes cluster using Azure Bastion.
3871
+
long-summary: The command will launch a subshell with the kubeconfig set to connect to the cluster via Bastion. Use exit or Ctrl-D (i.e. EOF) to exit the subshell.
3872
+
parameters:
3873
+
- name: --bastion
3874
+
type: string
3875
+
short-summary: The name or resource ID of a pre-deployed Bastion resource configured to connect to the current AKS cluster.
3876
+
long-summary: If not specified, the command will try to identify an existing Bastion resource within the cluster's node resource group.
3877
+
- name: --port
3878
+
type: int
3879
+
short-summary: The local port number used for the bastion connection.
3880
+
long-summary: If not provided, a random port will be used.
3881
+
- name: --admin
3882
+
type: bool
3883
+
short-summary: Use the cluster admin credentials to connect to the bastion.
3884
+
examples:
3885
+
- name: Connect to a managed Kubernetes cluster using Azure Bastion with custom port and admin credentials.
3886
+
text: az aks bastion -g MyResourceGroup --name MyManagedCluster --bastion MyBastionResource --port 50001 --admin
0 commit comments