You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/kubernetes-walkthrough-rm-template.md
+19-7Lines changed: 19 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ services: container-service
5
5
ms.topic: quickstart
6
6
ms.date: 04/19/2019
7
7
8
-
ms.custom: mvc
8
+
ms.custom: mvc,subject-armqs
9
9
10
10
#Customer intent: As a developer or cluster operator, I want to quickly create an AKS cluster and deploy an application so that I can see how to run applications using the managed Kubernetes service in Azure.
11
11
---
@@ -16,6 +16,8 @@ Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you qui
16
16
17
17

This quickstart assumes a basic understanding of Kubernetes concepts. For more information, see [Kubernetes core concepts for Azure Kubernetes Service (AKS)][kubernetes-concepts].
20
22
21
23
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
@@ -66,13 +68,21 @@ Make a note of the *appId* and *password*. These values are used in the followin
66
68
67
69
## Create an AKS cluster
68
70
69
-
The template used in this quickstart is to [deploy an Azure Kubernetes Service cluster](https://azure.microsoft.com/resources/templates/101-aks/). For more AKS samples, see the [AKS quickstart templates][aks-quickstart-templates] site.
71
+
### Review the template
72
+
73
+
The template used in this quickstart is from [Azure Quickstart templates](https://azure.microsoft.com/resources/templates/101-aks/).
For more AKS samples, see the [AKS quickstart templates][aks-quickstart-templates] site.
78
+
79
+
### Deploy the template
70
80
71
81
1. Select the following image to sign in to Azure and open a template.
72
82
73
83
[](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2F101-aks%2Fazuredeploy.json)
74
84
75
-
2. Select or enter the following values.
85
+
2. Select or enter the following values.
76
86
77
87
For this quickstart, leave the default values for the *OS Disk Size GB*, *Agent Count*, *Agent VM Size*, *OS Type*, and *Kubernetes Version*. Provide your own values for the following template parameters:
78
88
@@ -93,7 +103,9 @@ The template used in this quickstart is to [deploy an Azure Kubernetes Service c
93
103
94
104
It takes a few minutes to create the AKS cluster. Wait for the cluster to be successfully deployed before you move on to the next step.
95
105
96
-
## Connect to the cluster
106
+
## Validate the deployment
107
+
108
+
### Connect to the cluster
97
109
98
110
To manage a Kubernetes cluster, you use [kubectl][kubectl], the Kubernetes command-line client. If you use Azure Cloud Shell, `kubectl` is already installed. To install `kubectl` locally, use the [az aks install-cli][az-aks-install-cli] command:
A Kubernetes manifest file defines a desired state for the cluster, such as what container images to run. In this quickstart, a manifest is used to create all objects needed to run the Azure Vote application. This manifest includes two [Kubernetes deployments][kubernetes-deployment] - one for the sample Azure Vote Python applications, and the other for a Redis instance. Two [Kubernetes Services][kubernetes-service] are also created - an internal service for the Redis instance, and an external service to access the Azure Vote application from the internet.
128
140
@@ -231,7 +243,7 @@ deployment "azure-vote-front" created
231
243
service "azure-vote-front" created
232
244
```
233
245
234
-
## Test the application
246
+
###Test the application
235
247
236
248
When the application runs, a Kubernetes service exposes the application front end to the internet. This process can take a few minutes to complete.
237
249
@@ -258,7 +270,7 @@ To see the Azure Vote app in action, open a web browser to the external IP addre
258
270
259
271

260
272
261
-
## Delete cluster
273
+
## Clean up resources
262
274
263
275
When the cluster is no longer needed, use the [az group delete][az-group-delete] command to remove the resource group, container service, and all related resources.
0 commit comments