Skip to content

Commit da96fd2

Browse files
All Acrolynx changes for wording and punctuation
1 parent f4b9227 commit da96fd2

File tree

1 file changed

+18
-14
lines changed

1 file changed

+18
-14
lines changed

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

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ There are two methods for the quickstart. Choosing Azure Developer CLI is a more
2626
2727
## Azure Developer CLI
2828

29-
- An Azure account with an active subscription. Create an account for free.
29+
- An Azure account with an active subscription. Create an account for free
3030
- The Azure Developer CLI
31-
- The latest .NET 7.0 SDK.
31+
- The latest .NET 7.0 SDK
3232
- A Linux OS
3333

3434
This quickstart assumes a basic understanding of Kubernetes concepts. For more information, see [Kubernetes core concepts for Azure Kubernetes Service (AKS)][kubernetes-concepts].
@@ -38,7 +38,7 @@ This quickstart assumes a basic understanding of Kubernetes concepts. For more i
3838
[!INCLUDE [azure-cli-prepare-your-environment-no-header.md](~/articles/reusable-content/azure-cli/azure-cli-prepare-your-environment-no-header.md)]
3939

4040
- This article requires version 2.0.64 or later of the Azure CLI. If you're using Azure Cloud Shell, the latest version is already installed there.
41-
- Make sure that the identity you're using to create your cluster has the appropriate minimum permissions. For more information on access and identity for AKS, see [Access and identity options for Azure Kubernetes Service (AKS)](../concepts-identity.md).
41+
- Check the identity you're using to create your cluster has the appropriate minimum permissions. For more information on access and identity for AKS, see [Access and identity options for Azure Kubernetes Service (AKS)](../concepts-identity.md).
4242

4343
## Sample Code
4444

@@ -58,29 +58,29 @@ The quickstart application includes the following Kubernetes deployments and ser
5858
5959
### Template Command
6060

61-
You can quickly clone the application with `azd init` with the name of the repo using the --template flag.
61+
You can quickly clone the application with `azd init` with the name of the repo using the template argument.
6262

6363
For instance, our code sample is at: `azd init --template aks-store-demo`.
6464

6565
### Git
6666

6767
Alternatively, you can clone the application directly through GitHub, then run `azd init` from inside the directory to create configurations for the AZD CLI.
6868

69-
When prompted for an environment name you can chose anything, but our quickstart uses `aksqs`.
69+
When prompted for an environment name you can choose anything, but our quickstart uses `aksqs`.
7070

7171
## Sign in to your Azure Cloud account
7272

7373
The Azure Development Template contains all the code needed to create the services, but you need to sign in to host them on Azure Kubernetes Service.
7474

7575
Run `azd auth login`
7676

77-
1. You are shown a device code to copy.
77+
1. Copy the device code that appears.
7878
2. Hit enter to open in a new tab the auth portal.
79-
3. Type in your Microsoft Credentials in the new page.
80-
4. Verify that it is you trying to connect to Azure CLI If you encounter any issues, skip to the Troubleshooting section.
81-
5. Once it works, you should see the message "Device code authentication completed. Logged in to Azure." in your terminal
79+
3. Enter in your Microsoft Credentials in the new page.
80+
4. Confirm that it's you trying to connect to Azure CLI. If you encounter any issues, skip to the Troubleshooting section.
81+
5. Verify the message "Device code authentication completed. Logged in to Azure." appears in your original terminal.
8282

83-
### Troubleshooting: Cannot Connect to Localhost
83+
### Troubleshooting: Can't Connect to Localhost
8484

8585
Certain Azure security policies cause conflicts when trying to sign in. As a workaround, you can perform a curl request to the localhost url you were redirected to after you logged in.
8686

@@ -134,13 +134,17 @@ In the AZD Template, there are files ready for deployment to start your service.
134134
135135
When your application is created, a Kubernetes service exposes the application's front end service to the internet. This process can take a few minutes to complete. Once completed, follow these steps verify and test the application by opening up the store-front page.
136136
137-
1. Check the status of the deployed pods using the [kubectl get pods][kubectl-get] command. Make sure all pods are `Running` before proceeding.
137+
1. View the status of the deployed pods with the [kubectl get pods][kubectl-get] command.
138+
139+
Check that all pods are in the `Running` state before proceeding:
138140
139141
```console
140142
kubectl get pods
141143
```
142144
143-
1. Check for a public IP address for the front end store-front application. Monitor progress using the [kubectl get service][kubectl-get] command with the `--watch` argument.
145+
1. Search for a public IP address for the front end store-front application.
146+
147+
Monitor progress using the [kubectl get service][kubectl-get] command with the `--watch` argument:
144148
145149
```azurecli
146150
kubectl get service store-front --watch
@@ -153,7 +157,7 @@ When your application is created, a Kubernetes service exposes the application's
153157
store-front LoadBalancer 10.0.100.10 <pending> 80:30025/TCP 4h4m
154158
```
155159
156-
1. Once the **EXTERNAL-IP** address changes from *pending* to an actual public IP address, use `CTRL-C` to stop the `kubectl` watch process.
160+
1. When the **EXTERNAL-IP** address changes from *pending* to a public IP address, use `CTRL-C` to stop the `kubectl` watch process.
157161
158162
The following sample output shows a valid public IP address assigned to the service:
159163
@@ -162,7 +166,7 @@ When your application is created, a Kubernetes service exposes the application's
162166
store-front LoadBalancer 10.0.100.10 20.62.159.19 80:30025/TCP 4h5m
163167
```
164168
165-
1. Open a web browser to the external IP address of your service to see the Azure Store app in action.
169+
1. Open a web browser using the external IP address of your service to view the Azure Store app in action.
166170
167171
:::image type="content" source="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":::
168172

0 commit comments

Comments
 (0)