Skip to content

Commit e51573a

Browse files
committed
update per feedback
1 parent 45cde34 commit e51573a

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

articles/aks/kubernetes-walkthrough.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 'Quickstart: Deploy an Azure Kubernetes Service cluster'
33
description: Learn how to quickly create a Kubernetes cluster, deploy an application, and monitor performance in Azure Kubernetes Service (AKS) using the Azure CLI.
44
services: container-service
55
ms.topic: quickstart
6-
ms.date: 09/13/2019
6+
ms.date: 04/28/2020
77

88
ms.custom: [H1Hack27Feb2017, mvc, devcenter, seo-javascript-september2019, seo-javascript-october2019, seo-python-october2019]
99

@@ -14,7 +14,7 @@ ms.custom: [H1Hack27Feb2017, mvc, devcenter, seo-javascript-september2019, seo-j
1414

1515
In this quickstart, you deploy an Azure Kubernetes Service (AKS) cluster using the Azure CLI. AKS is a managed Kubernetes service that lets you quickly deploy and manage clusters. A multi-container application that includes a web front end and a Redis instance is run in the cluster. You then see how to monitor the health of the cluster and pods that run your application.
1616

17-
If you want to use Windows Server containers, see [Create an AKS cluster that supports Windows Server containers][windows-container-cli].
17+
To learn more about creating a Windows Server node pool, see [Create an AKS cluster that supports Windows Server containers][windows-container-cli].
1818

1919
![Voting app deployed in Azure Kubernetes Service](./media/container-service-kubernetes-walkthrough/voting-app-deployed-in-azure-kubernetes-service.png)
2020

articles/aks/limit-egress-traffic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ The following FQDN / application rules are required for AKS clusters that have t
165165

166166
## Required by Windows Server based nodes enabled
167167

168-
The following FQDN / application rules are required for Windows Server based AKS clusters:
168+
The following FQDN / application rules are required for using Windows Server based node pools:
169169

170170
| FQDN | Port | Use |
171171
|-----------------------------------------|-----------|----------|

articles/aks/windows-container-cli.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,17 @@ If you don't have an Azure subscription, create a [free account](https://azure.m
2121

2222
[!INCLUDE [cloud-shell-try-it.md](../../includes/cloud-shell-try-it.md)]
2323

24-
If you choose to install and use the CLI locally, this article requires that you are running the Azure CLI version 2.0.61 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI][azure-cli-install].
24+
25+
### Install aks-preview CLI extension
26+
27+
To use Windows Server containers, you need the *aks-preview* CLI extension version 0.4.12 or higher. Install the *aks-preview* Azure CLI extension using the [az extension add][az-extension-add] command, then check for any available updates using the [az extension update][az-extension-update] command::
28+
29+
```azurecli-interactive
30+
# Install the aks-preview extension
31+
az extension add --name aks-preview
32+
# Update the extension to make sure you have the latest version installed
33+
az extension update --name aks-preview
34+
```
2535

2636
### Limitations
2737

@@ -80,6 +90,7 @@ az aks create \
8090
--enable-addons monitoring \
8191
--kubernetes-version 1.16.7 \
8292
--generate-ssh-keys \
93+
--enable-vmss \
8394
--vm-set-type VirtualMachineScaleSets \
8495
--load-balancer-sku standard \
8596
--network-plugin azure

0 commit comments

Comments
 (0)