Skip to content

Commit 4962a2b

Browse files
Improve clusters section. Resolve warnings.
1 parent 90203a3 commit 4962a2b

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

articles/aks/learn/quick-kubernetes-deploy-azd.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,12 @@ The Azure Development Template contains all the code needed to create the servic
9797
9898
## Create resources for your cluster
9999
100-
The step can take longer depending on your internet speed.
100+
AZD runs all the hooks inside of the `azd-hooks` folder to pre-register, provision, then deploy these services.
101+
102+
- **Store front**: Web application for customers to view products and place orders.
103+
- **Product service**: Shows product information.
104+
- **Order service**: Places orders.
105+
- **Rabbit MQ**: Message queue for an order queue.
101106
102107
1. Create all your resources with the `azd up` command.
103108

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,21 +170,21 @@ AZD doesn't require a container registry step since it's in the template.
170170
service/store-front created
171171
```
172172
173-
2. Check the deployment is successful by viewing the pods with `kubectl`
173+
2. Check the deployment is successful by viewing the pods with `kubectl`.
174174
175175
```console
176176
kubectl get pods
177177
```
178178
179179
### [Azure Developer CLI](#tab/azure-azd)
180180
181-
Deployment in AZD in broken down into multiple stages represented by hooks. By default, azd deploys with all hooks.
181+
1. Deployment in AZD in broken down into multiple stages represented by hooks. By default, azd deploys with all hooks.
182182
183183
```azurecli-interactive
184184
azd up
185185
```
186186
187-
When you first run azd up, you're prompted to select which Subscription and Region to host your Azure resources.
187+
2. When you first run azd up, you're prompted to select which Subscription and Region to host your Azure resources.
188188
189189
```output
190190
? Select an Azure Subscription to use: [Use arrows to move, type to filter]
@@ -193,7 +193,7 @@ When you first run azd up, you're prompted to select which Subscription and Regi
193193
> 43. (US) East US 2 (eastus2)
194194
```
195195
196-
You can update these variables for `AZURE_LOCATION` and `AZURE_SUBSCRIPTION_ID` from inside the `.azure/<your-env-name>/.env` file.
196+
3. You can update these variables for `AZURE_LOCATION` and `AZURE_SUBSCRIPTION_ID` from inside the `.azure/<your-env-name>/.env` file.
197197
198198
---
199199

0 commit comments

Comments
 (0)