Skip to content

Commit 9f2de35

Browse files
azd style guide changes.
1 parent a26478f commit 9f2de35

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ The quickstart application includes the following Kubernetes deployments and ser
5151
5252
## Clone the Azure Developer CLI Template
5353

54-
`azd` can clone files directly from a GitHub repository with azd init. For this quickstart, clone the sample `azd` template using the `--template` flag along with the owner and name of the repository.
54+
`azd` can clone files directly from a GitHub repository with `azd init`. For this quickstart, clone the sample `azd` template using the `--template` flag along with the owner and name of the repository.
5555

5656
1. Clone the AKS Store Demo template from the **Azure-Samples** repository by running the `azd init` command and specifying `aks-store-demo`.
5757

58-
```azurecli-interactive
58+
```azdeveloper
5959
azd init --template Azure-Samples/aks-store-demo
6060
```
6161
@@ -71,14 +71,14 @@ The `azd` template contains all the code needed to create the services, but you
7171
7272
1. Sign in to your account with azd.
7373
74-
```azurecli-interactive
74+
```azdeveloper
7575
azd auth login
7676
```
7777
7878
1. Copy the device code that appears then press enter to sign-in.
7979
8080
```output
81-
Start by copying the next code: B8APV276M
81+
Start by copying the next code: XXXXXXXXX
8282
Then press enter and continue to log in from your browser...
8383
```
8484
@@ -110,7 +110,7 @@ This `azd` template creates a new resource group with an Azure Kubernetes cluste
110110
111111
1. Create all your resources with the `azd up` command.
112112
113-
```azurecli-interactive
113+
```azdeveloper
114114
azd up
115115
```
116116
@@ -207,7 +207,7 @@ Once you're finished with the quickstart, remember to clean up all your resource
207207
208208
1. Use `azd down` to delete all your resources used in the quickstart, which includes your resource group, cluster, and related Azure Services.
209209
210-
```azurecli-interactive
210+
```azdeveloper
211211
azd down
212212
```
213213

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ In these tutorials, your Azure Container Registry (ACR) instance stores the cont
180180
181181
1. Deployment in `azd` in broken down into multiple stages represented by hooks. By default, azd deploys with all hooks.
182182
183-
```azurecli-interactive
183+
```azdeveloper
184184
azd up
185185
```
186186

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Signing in to your Azure Account through `azd` configures your credentials.
184184
185185
1. Authenticate using `azd`.
186186
187-
```azurecli-interactive
187+
```azdeveloper
188188
azd auth login
189189
```
190190

articles/aks/tutorial-kubernetes-prepare-app.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,23 +64,23 @@ The [sample application][sample-application] used in this tutorial is a basic st
6464

6565
### [Azure Developer CLI](#tab/azure-azd)
6666

67-
1. If you are using `azd` locally, create an empty directory named `aks-store-demo` to host the azd template files.
67+
1. If you're using `azd` locally, create an empty directory named `aks-store-demo` to host the azd template files.
6868

69-
```azurecli-interactive
69+
```console
7070
mkdir aks-store-demo
7171
```
7272

7373
1. Change into the new directory to load all the files from the azd template.
7474

75-
```azurecli-interactive
75+
```console
7676
cd aks-store-demo
7777
```
7878

7979
1. Run the Azure Developer CLI ([azd][]) init command which clones the sample application into your empty directory.
8080

8181
Use the `--template` flag to clone from the aks-store-demo in Azure-Samples.
8282

83-
```azurecli-interactive
83+
```azdeveloper
8484
azd init --template aks-store-demo
8585
```
8686

0 commit comments

Comments
 (0)