Skip to content

Commit

Permalink
fix: aks cluster creation error (Azure#1192)
Browse files Browse the repository at this point in the history
  • Loading branch information
andyzhangx authored and fengzhou-msft committed Jan 13, 2020
1 parent 0d03006 commit 6fca5f7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions src/aks-preview/HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Release History
===============
0.4.27
+++++
* Fixed aks cluster creation error

0.4.26
+++++
* Update to use 2020-01-01 api-version
Expand Down
2 changes: 1 addition & 1 deletion src/aks-preview/azext_aks_preview/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ def aks_create(cmd, # pylint: disable=too-many-locals,too-many-statements,to
kubernetes_version='',
node_vm_size="Standard_DS2_v2",
node_osdisk_size=0,
node_osdisk_diskencryptionset_id='',
node_osdisk_diskencryptionset_id=None,
node_count=3,
nodepool_name="nodepool1",
service_principal=None, client_secret=None,
Expand Down
2 changes: 1 addition & 1 deletion src/aks-preview/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from codecs import open as open1
from setuptools import setup, find_packages

VERSION = "0.4.25"
VERSION = "0.4.27"
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
Expand Down
10 changes: 5 additions & 5 deletions src/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
],
"aks-preview": [
{
"downloadUrl": "https://azurecliaks.blob.core.windows.net/azure-cli-extension/aks_preview-0.4.26-py2.py3-none-any.whl",
"filename": "aks_preview-0.4.26-py2.py3-none-any.whl",
"downloadUrl": "https://azurecliaks.blob.core.windows.net/azure-cli-extension/aks_preview-0.4.27-py2.py3-none-any.whl",
"filename": "aks_preview-0.4.27-py2.py3-none-any.whl",
"metadata": {
"azext.isPreview": true,
"azext.minCliCoreVersion": "2.0.49",
Expand Down Expand Up @@ -88,9 +88,9 @@
"metadata_version": "2.0",
"name": "aks-preview",
"summary": "Provides a preview for upcoming AKS features",
"version": "0.4.26"
"version": "0.4.27"
},
"sha256Digest": "572dfc10ff045b00a0e65528afd415b14dfaade3b8d51054b7fc45c13e81f61c"
"sha256Digest": "bb392f42695cbdf63fe1f9501ca6b67e4b3070b4ad285c797c1deccbb626493f"
}
],
"alias": [
Expand Down Expand Up @@ -2659,4 +2659,4 @@
]
},
"formatVersion": "1"
}
}

0 comments on commit 6fca5f7

Please sign in to comment.