Skip to content

Commit 1551aa8

Browse files
Improve steps, add Azure Portal method. TODO: Screenshot.
1 parent 0a0027a commit 1551aa8

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

articles/aks/includes/azd/azd-login-ts.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,6 @@ The workaround requires the Azure CLI for authentication. If you don't have it o
5252

5353
5. Close the new terminal and open the old terminal
5454
6. Copy and note down which subscription_id you want to use
55-
7. Paste in the subscription_ID to the command `az account set -n {sub}`
55+
7. Paste in the subscription_ID to the command `az account set -n {sub}`
56+
57+
[install-azure-cli]: /cli/azure/install-azure-cli

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

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,14 +151,20 @@ AZD does not require a container registry step.
151151
152152
### [Azure Developer CLI](#tab/azure-azd)
153153
154-
To deploy your services, run `azd up`
154+
Deployment in AZD in broken down into multiple stages represented by hooks. Run `azd up` as an all-in-one command.
155+
156+
When you first run azd up, you're prompted to select which Subscription and Region to host your Azure resources.
157+
158+
You can change this later inside the `.azure/<your-env-name>/.env` file.
155159
156160
---
157161
158162
## Test the application
159163
160164
When the application runs, a Kubernetes service exposes the application front end to the internet. This process can take a few minutes to complete.
161165
166+
### [Azure CLI](#tab/azure-cli)
167+
162168
1. Monitor progress using the [`kubectl get service`][kubectl-get] command with the `--watch` argument.
163169
164170
```console
@@ -183,6 +189,17 @@ When the application runs, a Kubernetes service exposes the application front en
183189
184190
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).
185191
192+
### [Azure Portal](#tab/azure-azd)
193+
194+
You can navigate to your Azure Portal to find your deployment information.
195+
196+
1. Open your [Resource Group](azure-portal-rg)
197+
2. Navigate to the Kubernetes service for your cluster
198+
3. Select `Services and Ingress` under `Kubernetes Resources`
199+
4. Copy the External IP shown in the column for store-front.
200+
201+
<!-- TODO: ADD IMAGE -->
202+
186203
## Next steps
187204
188205
In this tutorial, you deployed a sample Azure application to a Kubernetes cluster in AKS. You learned how to:

0 commit comments

Comments
 (0)