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/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. 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',