Skip to content

Commit 51c6af9

Browse files
committed
- Updated to use ACRNAME variable for easier copy/paste
- Switched vi to notepad (vi doesn't work in PowerShell) - Updated output from command to match current output
1 parent c90a245 commit 51c6af9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,13 @@ In these tutorials, your Azure Container Registry (ACR) instance stores the cont
8686
1. Get your login server address using the [`Get-AzContainerRegistry`][get-azcontainerregistry] cmdlet and query for your login server. Make sure you replace `<acrName>` with the name of your ACR instance.
8787
8888
```azurepowershell-interactive
89-
(Get-AzContainerRegistry -ResourceGroupName myResourceGroup -Name <acrName>).LoginServer
89+
(Get-AzContainerRegistry -ResourceGroupName myResourceGroup -Name $ACRNAME).LoginServer
9090
```
9191
9292
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
95-
vi aks-store-quickstart.yaml
95+
notepad aks-store-quickstart.yaml
9696
```
9797
9898
3. Update the `image` property for the containers by replacing *ghcr.io/azure-samples* with your ACR login server name.
@@ -111,7 +111,7 @@ In these tutorials, your Azure Container Registry (ACR) instance stores the cont
111111
...
112112
```
113113
114-
4. Save and close the file. In `vi`, use `:wq`.
114+
4. Save and close the file.
115115
116116
### [Azure Developer CLI](#tab/azure-azd)
117117
@@ -160,7 +160,8 @@ In these tutorials, your Azure Container Registry (ACR) instance stores the cont
160160
The following example output shows the resources successfully created in the AKS cluster:
161161
162162
```output
163-
deployment.apps/rabbitmq created
163+
statefulset.apps/rabbitmq created
164+
configmap/rabbitmq-enabled-plugins created
164165
service/rabbitmq created
165166
deployment.apps/order-service created
166167
service/order-service created

0 commit comments

Comments
 (0)