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
+18-1Lines changed: 18 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -151,14 +151,20 @@ AZD does not require a container registry step.
151
151
152
152
### [Azure Developer CLI](#tab/azure-azd)
153
153
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.
155
159
156
160
---
157
161
158
162
## Test the application
159
163
160
164
When the application runs, a Kubernetes service exposes the application front end to the internet. This process can take a few minutes to complete.
161
165
166
+
### [Azure CLI](#tab/azure-cli)
167
+
162
168
1. Monitor progress using the [`kubectl get service`][kubectl-get] command with the `--watch` argument.
163
169
164
170
```console
@@ -183,6 +189,17 @@ When the application runs, a Kubernetes service exposes the application front en
183
189
184
190
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).
185
191
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
+
186
203
## Next steps
187
204
188
205
In this tutorial, you deployed a sample Azure application to a Kubernetes cluster in AKS. You learned how to:
0 commit comments