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

17.0.0b4
++++++++
* Reset vm_size and count to None for `az aks update --migrate-vmas-to-vms`

17.0.0b3
++++++++
* Add default value of option `--vm-sizes` for `az aks create` and `az aks nodepool add`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5368,6 +5368,9 @@ def update_vmas_to_vms(self, mc: ManagedCluster) -> ManagedCluster:
if mc.network_profile.load_balancer_sku == CONST_LOAD_BALANCER_SKU_BASIC:
mc.network_profile.load_balancer_sku = CONST_LOAD_BALANCER_SKU_STANDARD

mc.agent_pool_profiles[0].count = None
mc.agent_pool_profiles[0].vm_size = None

return mc

def update_mc_profile_preview(self) -> ManagedCluster:
Expand Down
Loading
Loading