From 04c41220e6c9fd9bd5ab90358857973657de09ca Mon Sep 17 00:00:00 2001 From: Matt Boersma Date: Fri, 30 Nov 2018 11:00:28 -0700 Subject: [PATCH 1/2] [AKS] Remove "(PREVIEW)" from AAD arguments --- .../azure-cli-acs/azure/cli/command_modules/acs/_help.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_help.py b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_help.py index 4e35444decb..20d14665d7a 100644 --- a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_help.py +++ b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_help.py @@ -188,18 +188,18 @@ short-summary: User account to create on node VMs for SSH access. - name: --aad-client-app-id type: string - short-summary: (PREVIEW) The ID of an Azure Active Directory client application of type "Native". This + short-summary: The ID of an Azure Active Directory client application of type "Native". This application is for user login via kubectl. - name: --aad-server-app-id type: string - short-summary: (PREVIEW) The ID of an Azure Active Directory server application of type "Web app/API". This + short-summary: The ID of an Azure Active Directory server application of type "Web app/API". This application represents the managed cluster's apiserver (Server application). - name: --aad-server-app-secret type: string - short-summary: (PREVIEW) The secret of an Azure Active Directory server application. + short-summary: The secret of an Azure Active Directory server application. - name: --aad-tenant-id type: string - short-summary: (PREVIEW) The ID of an Azure Active Directory tenant. + short-summary: The ID of an Azure Active Directory tenant. - name: --dns-service-ip type: string short-summary: An IP address assigned to the Kubernetes DNS service. From 77e334fbd364a2625c883ee3dd4696d763c22b3d Mon Sep 17 00:00:00 2001 From: Matt Boersma Date: Fri, 30 Nov 2018 11:02:12 -0700 Subject: [PATCH 2/2] Bump module version and update HISTORY.rst --- src/command_modules/azure-cli-acs/HISTORY.rst | 5 +++++ src/command_modules/azure-cli-acs/setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/command_modules/azure-cli-acs/HISTORY.rst b/src/command_modules/azure-cli-acs/HISTORY.rst index bd2bfd7f2fc..b4f3aad1891 100644 --- a/src/command_modules/azure-cli-acs/HISTORY.rst +++ b/src/command_modules/azure-cli-acs/HISTORY.rst @@ -2,6 +2,11 @@ Release History =============== + +2.3.13 +++++++ +* Remove "(PREVIEW)" from AAD arguments to "az aks create" + 2.3.12 ++++++ * Minor fixes diff --git a/src/command_modules/azure-cli-acs/setup.py b/src/command_modules/azure-cli-acs/setup.py index f8c262343a9..ff95484c65b 100644 --- a/src/command_modules/azure-cli-acs/setup.py +++ b/src/command_modules/azure-cli-acs/setup.py @@ -14,7 +14,7 @@ logger.warn("Wheel is not available, disabling bdist_wheel hook") cmdclass = {} -VERSION = "2.3.12" +VERSION = "2.3.13" CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers',