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-portal.md
+10-11Lines changed: 10 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure Kubernetes Service
4
4
description: Learn how to quickly create a Kubernetes cluster, deploy an application, and monitor performance in Azure Kubernetes Service (AKS) using the Azure portal.
#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 and monitor applications using the managed Kubernetes service in Azure.
10
10
---
@@ -16,7 +16,7 @@ Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you qui
16
16
* Run a multi-container application with a web front-end and a Redis instance in the cluster.
17
17
* Monitor the health of the cluster and pods that run your application.
18
18
19
-

19
+
:::image type="content" source="media/container-service-kubernetes-walkthrough/azure-voting-application.png" alt-text="Image of browsing to Azure Vote sample application":::
20
20
21
21
This quickstart assumes a basic understanding of Kubernetes concepts. For more information, see [Kubernetes core concepts for Azure Kubernetes Service (AKS)][kubernetes-concepts].
22
22
@@ -43,11 +43,11 @@ Sign in to the Azure portal at [https://portal.azure.com](https://portal.azure.c
43
43
-**Primary node pool**:
44
44
* Leave the default values selected.
45
45
46
-

46
+
:::image type="content" source="media/kubernetes-walkthrough-portal/create-cluster-basics.png" alt-text="Create AKS cluster - provide basic information":::
47
47
48
48
> [!NOTE]
49
49
> You can change the preset configuration when creating your cluster by selecting *View all preset configurations* and choosing a different option.
50
-
> 
To see the Azure Vote app in action, open a web browser to the external IP address of your service.
257
+
To see the Azure Vote app in action, open a web browser to the external IP address of you
258
258
259
-

259
+
:::image type="content" source="media/container-service-kubernetes-walkthrough/azure-voting-application.png" alt-text="Image of browsing to Azure Vote sample application":::
260
260
261
261
## Monitor health and logs
262
262
@@ -272,18 +272,18 @@ Metric data takes a few minutes to populate in the Azure portal. To see current
272
272
273
273
The `azure-vote-back` and `azure-vote-front` containers will display, as shown in the following example:
274
274
275
-

275
+
:::image type="content" source="media/kubernetes-walkthrough-portal/monitor-containers.png" alt-text="View the health of running containers in AKS":::
276
276
277
277
To view logs for the `azure-vote-front` pod, select **View in Log Analytics** from the top of the *azure-vote-front | Overview* area on the right side. These logs include the *stdout* and *stderr* streams from the container.
278
278
279
-

279
+
:::image type="content" source="media/kubernetes-walkthrough-portal/monitor-container-logs.png" alt-text="View the containers logs in AKS":::
280
280
281
281
## Delete cluster
282
282
283
283
To avoid Azure charges, clean up your unnecessary resources. Select the **Delete** button on the AKS cluster dashboard. You can also use the [az aks delete][az-aks-delete] command in the Cloud Shell:
284
284
285
285
```azurecli
286
-
az aks delete --resource-group myResourceGroup --name myAKSCluster --no-wait
286
+
az aks delete --resource-group myResourceGroup --name myAKSCluster --yes --no-wait
287
287
```
288
288
> [!NOTE]
289
289
> When you delete the cluster, the Azure Active Directory service principal used by the AKS cluster is not removed. For steps on how to remove the service principal, see [AKS service principal considerations and deletion][sp-delete].
@@ -298,7 +298,6 @@ Pre-existing container images were used in this quickstart to create a Kubernete
298
298
299
299
In this quickstart, you deployed a Kubernetes cluster and then deployed a multi-container application to it. Access the Kubernetes web dashboard for your AKS cluster.
300
300
301
-
302
301
To learn more about AKS by walking through a complete example, including building an application, deploying from Azure Container Registry, updating a running application, and scaling and upgrading your cluster, continue to the Kubernetes cluster tutorial.
0 commit comments