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/tutorial-kubernetes-deploy-application.md
+16-16Lines changed: 16 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,19 +29,19 @@ In this tutorial, part four of seven, you deploy a sample application into a Kub
29
29
30
30
## Before you begin
31
31
32
-
In previous tutorials, you packaged an application into a container image, uploaded the image to Azure Container Registry, and created a Kubernetes cluster. To complete this tutorial, you need the pre-created`aks-store-quickstart.yaml` Kubernetes manifest file. This file download was included with the application source code in a previous tutorial. Make sure you cloned the repo and changed directories into the cloned repo. If you haven't completed these steps and want to follow along, start with [Tutorial 1 - Prepare application for AKS][aks-tutorial-prepare-app].
32
+
In previous tutorials, you packaged an application into a container image, uploaded the image to Azure Container Registry, and created a Kubernetes cluster. To complete this tutorial, you need the precreated`aks-store-quickstart.yaml` Kubernetes manifest file. This file was downloaded in the application source code from [Tutorial 1 - Prepare application for AKS][aks-tutorial-prepare-app].
33
33
34
34
### [Azure CLI](#tab/azure-cli)
35
35
36
-
This tutorial requires Azure CLI version 2.34.1 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI][azure-cli-install].
36
+
This tutorial requires Azure CLI version 2.0.53 or later. Check your version with `az --version`. To install or upgrade, see [Install Azure CLI][azure-cli-install].
37
37
38
38
### [Azure PowerShell](#tab/azure-powershell)
39
39
40
-
This tutorial requires Azure PowerShell version 5.9.0 or later. Run `Get-InstalledModule -Name Az` to find the version. If you need to install or upgrade, see [Install Azure PowerShell][azure-powershell-install].
40
+
This tutorial requires Azure PowerShell version 5.9.0 or later. Check your version with `Get-InstalledModule -Name Az`. To install or upgrade, see [Install Azure PowerShell][azure-powershell-install].
41
41
42
42
### [Azure Developer CLI](#tab/azure-azd)
43
43
44
-
This tutorial requires Azure Developer CLI version 1.5.1 or later. Check your version with `azd version`. To install or upgrade, see [Install Azure Developer CLI][azure-azd-install].
44
+
This tutorial requires Azure Developer CLI (AZD) version 1.5.1 or later. Check your version with `azd version`. To install or upgrade, see [Install Azure Developer CLI][azure-azd-install].
45
45
46
46
---
47
47
@@ -57,7 +57,7 @@ In these tutorials, your Azure Container Registry (ACR) instance stores the cont
57
57
az acr list --resource-group myResourceGroup --query "[].{acrLoginServer:loginServer}" --output table
58
58
```
59
59
60
-
2. Make sure you're in the cloned *aks-store-demo* directory, and then open the manifest file with a text editor, such as `vi`:
60
+
2. Make sure you're in the cloned *aks-store-demo* directory, and then open the manifest file with a text editor, such as `vi`.
61
61
62
62
```azurecli-interactive
63
63
vi aks-store-quickstart.yaml
@@ -89,7 +89,7 @@ In these tutorials, your Azure Container Registry (ACR) instance stores the cont
@@ -214,21 +214,21 @@ When the application runs, a Kubernetes service exposes the application front en
214
214
215
215
3. View the application in action by opening a web browser to the external IP address of your service.
216
216
217
-
:::image type="content" source="learn/media/quick-kubernetes-deploy-cli/aks-store-application.png" alt-text="Screenshot of AKS Store sample application." lightbox="media/quick-kubernetes-deploy-cli/aks-store-application.png":::
217
+
:::image type="content" source="./learn/media/quick-kubernetes-deploy-cli/aks-store-application.png" alt-text="Screenshot of AKS Store sample application." lightbox="media/quick-kubernetes-deploy-cli/aks-store-application.png":::
218
218
219
219
If the application doesn't load, it might be an authorization problem with your image registry. To view the status of your containers, use the `kubectl get pods` command. If you can't pull the container images, see [Authenticate with Azure Container Registry from Azure Kubernetes Service](cluster-container-registry-integration.md).
220
220
221
-
### Azure Portal
221
+
### Azure portal
222
222
223
-
Navigate to your Azure Portal to find your deployment information.
223
+
Navigate to your Azure portal to find your deployment information.
224
224
225
-
1. Open your [Resource Group][azure-rg] on the Azure Portal.
225
+
1. Open your [Resource Group][azure-rg] on the Azure portal
226
226
1. Navigate to the Kubernetes service for your cluster
227
227
1. Select `Services and Ingress` under `Kubernetes Resources`
228
-
1. Copy the External IP shown in the column for store-front.
229
-
1. Paste the IP into your browser to visit your store page.
228
+
1. Copy the External IP shown in the column for store-front
229
+
1. Paste the IP into your browser and visit your store page
230
230
231
-
:::image type="content" source="learn/media/quick-kubernetes-deploy-cli/aks-store-application.png" alt-text="Screenshot of AKS Store sample application." lightbox="media/quick-kubernetes-deploy-cli/aks-store-application.png":::
231
+
:::image type="content" source="./learn/media/quick-kubernetes-deploy-cli/aks-store-application.png" alt-text="Screenshot of AKS Store sample application." lightbox="media/quick-kubernetes-deploy-cli/aks-store-application.png":::
Copy file name to clipboardExpand all lines: articles/aks/tutorial-kubernetes-prepare-app.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ The [sample application][sample-application] used in this tutorial is a basic st
64
64
65
65
### [Azure Developer CLI](#tab/azure-azd)
66
66
67
-
1. Use [azd][] to clone the sample application to your development environment.
67
+
1. Use the Azure Developer CLI ([azd][]) to clone the sample application to your development environment.
68
68
69
69
```azurecli
70
70
azd init --template aks-store-demo
@@ -174,7 +174,7 @@ You can use [Docker Compose][docker-compose] to automate building container imag
174
174
175
175
### Docker
176
176
177
-
1. Create the container image, download the Redis image, and start the application using the `docker compose` command.
177
+
1. Create the container image, download the Redis image, and start the application using the `docker compose` command:
178
178
179
179
```console
180
180
docker compose -f docker-compose-quickstart.yml up -d
@@ -232,9 +232,9 @@ Since you validated the application's functionality, you can stop and remove the
232
232
```
233
233
234
234
235
-
### [AZD](#tab/azure-azd)
235
+
### [Azure Developer CLI](#tab/azure-azd)
236
236
237
-
When you use AZD, there are no manual container image dependencies. AZD handles the provisioning, deployment, and clean up of your applications and clusters.
237
+
When you use AZD, there are no manual container image dependencies. AZD handles the provisioning, deployment, and cleans up of your applications and clusters.
238
238
239
239
---
240
240
## Next steps
@@ -253,9 +253,9 @@ In the next tutorial, you learn how to store container images in an ACR.
253
253
> [!div class="nextstepaction"]
254
254
> [Push images to Azure Container Registry][aks-tutorial-prepare-acr]
255
255
256
-
### [AZD](#tab/azure-azd)
256
+
### [Azure Developer CLI](#tab/azure-azd)
257
257
258
-
In this tutorial, you cloned a sample application using AZD. You learned how to:
258
+
In this tutorial, you cloned a sample application using AZD. You learned how to:
0 commit comments