Skip to content

Commit 08f2d78

Browse files
Quickstart naming changes and grammar.
1 parent a41bcfb commit 08f2d78

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

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

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
---
2-
title: 'Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Azure Developer CLI (AZD)'
3-
description: Learn how to quickly deploy a Kubernetes cluster and deploy an application in Azure Kubernetes Service (AKS) using the AZD CLI.
2+
title: 'Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using the Azure Developer CLI (`azd`)'
3+
description: Learn how to quickly deploy a Kubernetes cluster and deploy an application in Azure Kubernetes Service (AKS) using `azd`.
44
ms.topic: quickstart
55
ms.date: 03/06/2024
66
ms.custom: H1Hack27Feb2017, mvc, devcenter, seo-javascript-september2019, seo-javascript-october2019, seo-python-october2019, devx-track-azurecli, contperf-fy21q1, mode-api, linux-related-content, devx-track-extended-azdevcli
77
#Customer intent: As a developer or cluster operator, I want to deploy an AKS cluster and deploy an application so I can see how to run applications using the managed Kubernetes service in Azure.
88
---
99

10-
# Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Azure Developer CLI (AZD)
10+
# Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using the Azure Developer CLI (`azd`)
1111

1212
Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you quickly deploy and manage clusters. In this quickstart, you learn to:
1313

14-
- Download and run Azure Developer Templates.
15-
- Deploy an AKS cluster using the Azure Developer CLI (AZD).
14+
- Download and install the Azure Developer CLI (`azd`).
15+
- Clone applications from an Azure Developer CLI template (`azd` template).
16+
- Deploy an AKS cluster using the Azure Developer CLI (`azd`).
1617
- Run a sample multi-container application with a group of microservices that simulates a retail app.
17-
- Delete and cleanup containers made from AZD templates.
18+
- Delete and cleanup containers made from the `azd` template.
1819

1920
> [!NOTE]
2021
> To get started with quickly provisioning an AKS cluster, this article includes steps to deploy a cluster with default settings for evaluation purposes only. Before deploying a production-ready cluster, we recommend that you familiarize yourself with our [baseline reference architecture][baseline-reference-architecture] to consider how it aligns with your business requirements.
@@ -25,11 +26,11 @@ This quickstart assumes a basic understanding of Kubernetes concepts. For more i
2526

2627
- [!INCLUDE [quickstarts-free-trial-note](../../../includes/quickstarts-free-trial-note.md)]
2728

28-
- For ease of use, run this on Bash or PowerShell in the [Azure Cloud Shell](/azure/cloud-shell/overview). For more information, see [Quickstart for Azure Cloud Shell](/azure/cloud-shell/quickstart).
29+
- For ease of use, run this sample on Bash or PowerShell in the [Azure Cloud Shell](/azure/cloud-shell/overview). For more information, see [Quickstart for Azure Cloud Shell](/azure/cloud-shell/quickstart).
2930

30-
- If you want to use AZD locally, then install the [Azure Developer CLI][azd-install].
31+
- To use `azd` locally, install version 1.6.1 or later of the [Azure Developer CLI][azd-install].
3132

32-
- This article requires version 1.6.1 or later of the [Azure Developer CLI][azd-install]. If you're using the [Azure Cloud Shell](/azure/cloud-shell/overview), the latest version is already installed on there.
33+
- If you're using the [Azure Cloud Shell](/azure/cloud-shell/overview), the latest version is already installed on there.
3334

3435

3536
## Sample Code
@@ -48,26 +49,25 @@ The quickstart application includes the following Kubernetes deployments and ser
4849
> [!NOTE]
4950
> We don't recommend running stateful containers, such as Rabbit MQ, without persistent storage for production use. These are used here for simplicity, but we recommend using managed services instead, such as Azure CosmosDB or Azure Service Bus.
5051
51-
## Clone app with the Azure Developer Template
52+
## Clone the Azure Developer CLI Template
5253

53-
The AZD CLI provides an interface to clone the files directly from GitHub or register existing folders as templates.
54-
You can quickly clone the sample application with `azd init` followed by the name of the repository as the template argument.
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

56-
1. Create the AKS Store Demo by cloning from Azure-Samples/aks-store-demo through azd.
56+
1. Clone the AKS Store Demo template from the Azure-Samples repository by running the azd init command and specifying aks-store-demo.
5757

5858
```azurecli-interactive
59-
azd init --template aks-store-demo
59+
azd init --template Azure-Samples/aks-store-demo
6060
```
6161
62-
2. Choose an environment name for your project that uses only alphanumeric characters and hyphens.
62+
1. Choose an environment name for your project that uses only alphanumeric characters and hyphens.
6363
6464
```output
65-
Enter a new environment name: [? for help]
65+
Enter a new environment name: aks-azdqs-1
6666
```
6767
6868
## Sign in to your Azure Cloud account
6969
70-
The Azure Development Template contains all the code needed to create the services, but you need to sign in to your Azure account in order to host the application on AKS.
70+
The `azd` template contains all the code needed to create the services, but you need to sign in to your Azure account in order to host the application on AKS.
7171
7272
1. Sign in to your account with azd.
7373
@@ -84,7 +84,7 @@ The Azure Development Template contains all the code needed to create the servic
8484
8585
1. Authenticate with your credentials on your organization's sign in page.
8686
87-
1. Confirm that it's you trying to connect to Azure CLI.
87+
1. Confirm that it's you trying to connect from the Azure CLI.
8888
8989
1. Verify the message "Device code authentication completed. Logged in to Azure." appears in your original terminal.
9090
@@ -98,14 +98,14 @@ The Azure Development Template contains all the code needed to create the servic
9898
9999
## Create and deploy resources for your cluster
100100
101-
AZD runs all the hooks inside of the `azd-hooks` folder to pre-register, provision, then deploy these services.
101+
`azd` runs all the hooks inside of the `azd-hooks` folder to preregister, provision, then deploy these services.
102102
103-
The AZD template creates a new resource group with an Azure Kubernetes cluster and Azure Kevault. The keyvault is used to store client secrets. Within the cluster, it runs your app's services in the pets namespace.
103+
This `azd` template creates a new resource group with an Azure Kubernetes cluster and Azure Keyvault. The keyvault is used to store client secrets. Within the cluster, it runs your app's services in the pets namespace.
104104
105105
- **makeline-service**: Processes orders from the queue and completing them.
106-
- **order-service**: Place orders for products
106+
- **order-service**: Place orders for products.
107107
- **product-service**: Perform create, read, update, or delete operations on products.
108-
- **store-front**: Web app for customers to view products and place orders
108+
- **store-front**: Web app for customers to view products and place orders.
109109
- **rabbit-mq**: Message queue for an order queue.
110110
111111
1. Create all your resources with the `azd up` command.

0 commit comments

Comments
 (0)