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
13 changes: 9 additions & 4 deletions src/aks-preview/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,16 @@ To release a new version, please select a new version number (usually plus 1 to

Pending
+++++++


19.0.0b19
+++++++
* Add add-on support for `ApplicationLoadBalancer` (Application Gateway for Containers)
- AKS Create and Update parameters for `--enable-application-load-balancer` and `--disable-application-load-balancer`
- `az aks applicationloadbalancer enable`: Enable Application Load Balancer add-on for an existing cluster.
- `az aks applicationloadbalancer disable`: Disable Application Load Balancer add-on for an existing cluster.
- `az aks applicationloadbalancer update`: Update Application Load Balancer add-on for an existing cluster.
* AKS Create and Update parameters for `--enable-application-load-balancer` and `--disable-application-load-balancer`
* `az aks applicationloadbalancer enable`: Enable Application Load Balancer add-on for an existing cluster.
* `az aks applicationloadbalancer disable`: Disable Application Load Balancer add-on for an existing cluster.
* `az aks applicationloadbalancer update`: Update Application Load Balancer add-on for an existing cluster.
* Remove prerequisite for `--enable-gateway-api` option in `az aks create` and `az aks update` commands - managed Gateway API ingress provider enablement no longer required

19.0.0b18
+++++++
Expand Down
8 changes: 4 additions & 4 deletions src/aks-preview/azext_aks_preview/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@
short-summary: Enable user-defined scheduler configuration for kube-scheduler upstream on the cluster
- name: --enable-gateway-api
type: bool
short-summary: Enable managed installation of Gateway API CRDs from the standard release channel. Requires at least one managed Gateway API ingress provider to be enabled.
short-summary: Enable managed installation of Gateway API CRDs from the standard release channel.
- name: --enable-hosted-system
type: bool
short-summary: Create a cluster with fully hosted system components. This applies only when creating a new automatic cluster.
Expand Down Expand Up @@ -788,8 +788,8 @@
text: az aks create -g MyResourceGroup -n MyManagedCluster --vm-set-type VirtualMachines --vm-sizes "VMSize1,VMSize2" --node-count 3
- name: Create a kubernetes cluster with a fully managed system node pool
text: az aks create -g MyResourceGroup -n MyManagedCluster --enable-managed-system-pool
- name: Create a kubernetes cluster with the Azure Service Mesh addon enabled with a managed installation of Gateway API CRDs from the standard release channel.
text: az aks create -g MyResourceGroup -n MyManagedCluster --enable-azure-service-mesh --enable-gateway-api
- name: Create a kubernetes cluster with a managed installation of Gateway API CRDs from the standard release channel.
text: az aks create -g MyResourceGroup -n MyManagedCluster --enable-gateway-api
- name: Create an automatic cluster with hosted system components enabled.
text: az aks create -g MyResourceGroup -n MyManagedCluster --sku automatic --enable-hosted-system

Expand Down Expand Up @@ -1417,7 +1417,7 @@
short-summary: Disable user-defined scheduler configuration for kube-scheduler upstream on the cluster
- name: --enable-gateway-api
type: bool
short-summary: Enable managed installation of Gateway API CRDs from the standard release channel. Requires at least one managed Gateway API ingress provider to be enabled.
short-summary: Enable managed installation of Gateway API CRDs from the standard release channel.
- name: --disable-gateway-api
type: bool
short-summary: Disable managed installation of Gateway API CRDs.
Expand Down
Loading
Loading