Skip to content

Commit

Permalink
{AKS}: Fix the issue that the value passed by option --os-sku in co…
Browse files Browse the repository at this point in the history
…mmand `az aks nodepool update` is not processed (Azure#6964)
  • Loading branch information
FumingZhang authored Nov 8, 2023
1 parent 713fce7 commit d62f770
Show file tree
Hide file tree
Showing 4 changed files with 321 additions and 300 deletions.
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
+++++++

0.5.171
+++++++
* Fix the issue that the value passed by option `--os-sku` in command `az aks nodepool update` is not processed.

0.5.170
+++++++
* Add `az aks approuting` and `az aks approuting zone` commands for managing App Routing.
Expand Down
3 changes: 3 additions & 0 deletions src/aks-preview/azext_aks_preview/agentpool_decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,9 @@ def update_agentpool_profile_preview(self, agentpools: List[AgentPool] = None) -

# update artifact streaming
agentpool = self.update_artifact_streaming(agentpool)

# update os sku
agentpool = self.update_os_sku(agentpool)
return agentpool

def update_upgrade_settings(self, agentpool: AgentPool) -> AgentPool:
Expand Down
Loading

0 comments on commit d62f770

Please sign in to comment.