Skip to content

Commit

Permalink
make the aks show table output contain currentKubernetesVersion column (
Browse files Browse the repository at this point in the history
#4299)

* make the aks show table output contain currentKubernetesVersion column

* add more details for new release

Co-authored-by: Jianping Zeng <jizen@microsoft.com>
  • Loading branch information
zjpjack and Jianping Zeng committed Jan 7, 2022
1 parent 72de9b7 commit 906f96c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/aks-preview/HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

Release History
===============
0.5.51
* Add currentKubernetesVersion column for az aks show --output table.

0.5.50
++++++
* Add support for enabling OIDC issuer with `--enable-oidc-issuer` flag.
Expand Down
1 change: 1 addition & 0 deletions src/aks-preview/azext_aks_preview/_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ def _aks_table_format(result):
location: location,
resourceGroup: resourceGroup,
kubernetesVersion: kubernetesVersion,
currentKubernetesVersion: currentKubernetesVersion,
provisioningState: provisioningState,
fqdn: fqdn
}""")
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.5.50"
VERSION = "0.5.51"
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 906f96c

Please sign in to comment.