Skip to content

Commit 520341b

Browse files
Acrolynx changes and style guide choices. Fix image link.
1 parent a3f5449 commit 520341b

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

articles/aks/tutorial-kubernetes-deploy-application.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,19 @@ In this tutorial, part four of seven, you deploy a sample application into a Kub
2929
3030
## Before you begin
3131

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].
3333

3434
### [Azure CLI](#tab/azure-cli)
3535

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].
3737

3838
### [Azure PowerShell](#tab/azure-powershell)
3939

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].
4141

4242
### [Azure Developer CLI](#tab/azure-azd)
4343

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].
4545

4646
---
4747

@@ -57,7 +57,7 @@ In these tutorials, your Azure Container Registry (ACR) instance stores the cont
5757
az acr list --resource-group myResourceGroup --query "[].{acrLoginServer:loginServer}" --output table
5858
```
5959
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`.
6161
6262
```azurecli-interactive
6363
vi aks-store-quickstart.yaml
@@ -89,7 +89,7 @@ In these tutorials, your Azure Container Registry (ACR) instance stores the cont
8989
(Get-AzContainerRegistry -ResourceGroupName myResourceGroup -Name <acrName>).LoginServer
9090
```
9191
92-
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`:
92+
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`.
9393
9494
```azurepowershell-interactive
9595
vi aks-store-quickstart.yaml
@@ -116,7 +116,7 @@ In these tutorials, your Azure Container Registry (ACR) instance stores the cont
116116
117117
### [Azure Developer CLI](#tab/azure-azd)
118118
119-
AZD does not require a container registry step.
119+
AZD doesn't require a container registry step since it's in the template.
120120
121121
---
122122
@@ -182,7 +182,7 @@ Deployment in AZD in broken down into multiple stages represented by hooks. Run
182182
183183
When you first run azd up, you're prompted to select which Subscription and Region to host your Azure resources.
184184
185-
You can change this later inside the `.azure/<your-env-name>/.env` file.
185+
You can update these variables for `AZURE_LOCATION` and `AZURE_SUBSCRIPTION_ID` from inside the `.azure/<your-env-name>/.env` file.
186186
187187
---
188188
@@ -198,7 +198,7 @@ When the application runs, a Kubernetes service exposes the application front en
198198
kubectl get service store-front --watch
199199
```
200200
201-
Initially, the `EXTERNAL-IP` for the *store-front* service shows as *pending*.
201+
Initially, the `EXTERNAL-IP` for the *store-front* service shows as *pending*:
202202
203203
```output
204204
store-front LoadBalancer 10.0.34.242 <pending> 80:30676/TCP 5s
@@ -214,21 +214,21 @@ When the application runs, a Kubernetes service exposes the application front en
214214
215215
3. View the application in action by opening a web browser to the external IP address of your service.
216216
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":::
218218
219219
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).
220220
221-
### Azure Portal
221+
### Azure portal
222222
223-
Navigate to your Azure Portal to find your deployment information.
223+
Navigate to your Azure portal to find your deployment information.
224224
225-
1. Open your [Resource Group][azure-rg] on the Azure Portal.
225+
1. Open your [Resource Group][azure-rg] on the Azure portal
226226
1. Navigate to the Kubernetes service for your cluster
227227
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
230230
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":::
232232
233233
## Next steps
234234

articles/aks/tutorial-kubernetes-prepare-app.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ The [sample application][sample-application] used in this tutorial is a basic st
6464

6565
### [Azure Developer CLI](#tab/azure-azd)
6666

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.
6868

6969
```azurecli
7070
azd init --template aks-store-demo
@@ -174,7 +174,7 @@ You can use [Docker Compose][docker-compose] to automate building container imag
174174

175175
### Docker
176176

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:
178178

179179
```console
180180
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
232232
```
233233

234234

235-
### [AZD](#tab/azure-azd)
235+
### [Azure Developer CLI](#tab/azure-azd)
236236

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.
238238

239239
---
240240
## Next steps
@@ -253,9 +253,9 @@ In the next tutorial, you learn how to store container images in an ACR.
253253
> [!div class="nextstepaction"]
254254
> [Push images to Azure Container Registry][aks-tutorial-prepare-acr]
255255

256-
### [AZD](#tab/azure-azd)
256+
### [Azure Developer CLI](#tab/azure-azd)
257257

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:
259259

260260
> [!div class="checklist"]
261261
> * Clone a sample azd template from GitHub.

0 commit comments

Comments
 (0)