Skip to content

Commit cc55620

Browse files
committed
Edited all quickstart articles to revise terminology
1 parent 66bfce6 commit cc55620

10 files changed

Lines changed: 86 additions & 65 deletions

articles/aks/learn/quick-kubernetes-deploy-bicep-extensibility-kubernetes-provider.md

Lines changed: 9 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ title: 'Quickstart: Create an Azure Kubernetes Service (AKS) cluster using the B
33
description: Learn how to quickly create a Kubernetes cluster using the Bicep extensibility Kubernetes provider and deploy an application in Azure Kubernetes Service (AKS).
44
ms.topic: quickstart
55
ms.custom: devx-track-bicep
6-
ms.date: 10/23/2023
6+
ms.date: 12/14/2023
77
#Customer intent: As a developer or cluster operator, I want to quickly create an AKS cluster and deploy an application so that 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 the Bicep extensibility Kubernetes provider (Preview)
10+
# Quickstart: Create an Azure Kubernetes Service (AKS) cluster using the Bicep extensibility Kubernetes provider (preview)
1111

12-
Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you quickly deploy and manage clusters. In this quickstart, you:
12+
Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you quickly create and manage clusters. In this quickstart, you:
1313

14-
* Deploy an AKS cluster using the Bicep extensibility Kubernetes provider (preview).
14+
* Create an AKS cluster using the Bicep extensibility Kubernetes provider (preview).
1515
* Run a sample multi-container application with a group of microservices and web front ends simulating a retail scenario.
1616

1717
> [!NOTE]
@@ -30,6 +30,9 @@ Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you qui
3030
> }
3131
> ```
3232
33+
> [!NOTE]
34+
> To get started with quickly provisioning an AKS cluster, this article includes steps to create a cluster with default settings for evaluation purposes only. Before creating 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.
35+
3336
## Before you begin
3437
3538
* This quickstart assumes a basic understanding of Kubernetes concepts. For more information, see [Kubernetes core concepts for Azure Kubernetes Service (AKS)][kubernetes-concepts].
@@ -421,35 +424,18 @@ To learn more about AKS and walk through a complete code to deployment example,
421424
> [AKS tutorial][aks-tutorial]
422425
423426
<!-- LINKS - external -->
424-
[azure-vote-app]: https://github.com/Azure-Samples/azure-voting-app-redis.git
425-
[kubectl]: https://kubernetes.io/docs/user-guide/kubectl/
426-
[kubectl-apply]: https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#apply
427-
[kubectl-get]: https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#get
428-
[azure-dev-spaces]: /previous-versions/azure/dev-spaces/
429427
[aks-quickstart-templates]: https://azure.microsoft.com/resources/templates/?term=Azure+Kubernetes+Service
430428
431429
<!-- LINKS - internal -->
432430
[kubernetes-concepts]: ../concepts-clusters-workloads.md
433-
[aks-monitor]: ../../azure-monitor/containers/container-insights-onboard.md
434431
[aks-tutorial]: ../tutorial-kubernetes-prepare-app.md
435-
[az-aks-browse]: /cli/azure/aks#az_aks_browse
436-
[az-aks-create]: /cli/azure/aks#az_aks_create
437-
[az-aks-get-credentials]: /cli/azure/aks#az_aks_get_credentials
438-
[import-azakscredential]: /powershell/module/az.aks/import-azakscredential
439-
[az-aks-install-cli]: /cli/azure/aks#az_aks_install_cli
440-
[install-azakskubectl]: /powershell/module/az.aks/install-azaksclitool
441432
[az-group-create]: /cli/azure/group#az_group_create
442433
[az-group-delete]: /cli/azure/group#az_group_delete
443434
[remove-azresourcegroup]: /powershell/module/az.resources/remove-azresourcegroup
444-
[azure-cli-install]: /cli/azure/install-azure-cli
445-
[install-azure-powershell]: /powershell/azure/install-az-ps
446-
[connect-azaccount]: /powershell/module/az.accounts/Connect-AzAccount
447-
[sp-delete]: ../kubernetes-service-principal.md#additional-considerations
448435
[kubernetes-deployment]: ../concepts-clusters-workloads.md#deployments-and-yaml-manifests
449-
[kubernetes-service]: ../concepts-network.md#services
450436
[ssh-keys]: ../../virtual-machines/linux/create-ssh-keys-detailed.md
451-
[az-ad-sp-create-for-rbac]: /cli/azure/ad/sp#az_ad_sp_create_for_rbac
452437
[az-deployment-group-create]: /cli/azure/group/deployment#az_deployment_group_create
453438
[new-azresourcegroup]: /powershell/module/az.resources/new-azresourcegroup
454439
[new-azresourcegroupdeployment]: /powershell/module/az.resources/new-azresourcegroupdeployment
455-
[az-sshkey-create]: /cli/azure/sshkey#az_sshkey_create
440+
[az-sshkey-create]: /cli/azure/sshkey#az_sshkey_create
441+
[baseline-reference-architecture]: /azure/architecture/reference-architectures/containers/aks/baseline-aks

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

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,21 @@ ms.custom: mvc, subject-armbicep, devx-track-bicep, devx-track-azurecli, devx-tr
77
#Customer intent: As a developer or cluster operator, I want to quickly create an AKS cluster and deploy an application so that 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 Bicep
10+
# Quickstart: Create an Azure Kubernetes Service (AKS) cluster using Bicep
1111

12-
Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you quickly deploy and manage clusters. In this quickstart, you:
12+
Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you quickly create and manage clusters. In this quickstart, you:
1313

14-
* Deploy an AKS cluster using Bicep.
14+
* Create an AKS cluster using Bicep.
1515
* Run a sample multi-container application with a group of microservices and web front ends simulating a retail scenario.
1616

1717
> [!NOTE]
1818
> This sample application is just for demo purposes and doesn't represent all the best practices for Kubernetes applications.
1919
2020
:::image type="content" source="media/quick-kubernetes-deploy-bicep/aks-store-application.png" alt-text="Screenshot of browsing to Azure Store sample application." lightbox="media/quick-kubernetes-deploy-bicep/aks-store-application.png":::
2121

22+
> [!NOTE]
23+
> To get started with quickly provisioning an AKS cluster, this article includes steps to create a cluster with default settings for evaluation purposes only. Before creating 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.
24+
2225
## Before you begin
2326

2427
* This quickstart assumes a basic understanding of Kubernetes concepts. For more information, see [Kubernetes core concepts for Azure Kubernetes Service (AKS)][kubernetes-concepts].
@@ -43,7 +46,7 @@ Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you qui
4346

4447
* To create an AKS cluster using a Bicep file, you provide an SSH public key. If you need this resource, see the following section. Otherwise, skip to [Review the Bicep file](#review-the-bicep-file).
4548
* Make sure the identity you use to create your cluster has the appropriate minimum permissions. For more details on access and identity for AKS, see [Access and identity options for Azure Kubernetes Service (AKS)](../concepts-identity.md).
46-
* To deploy a Bicep file, you need write access on the resources you deploy and access to all operations on the `Microsoft.Resources/deployments` resource type. For example, to deploy a virtual machine, you need `Microsoft.Compute/virtualMachines/write` and `Microsoft.Resources/deployments/*` permissions. For a list of roles and permissions, see [Azure built-in roles](../../role-based-access-control/built-in-roles.md).
49+
* To deploy a Bicep file, you need write access on the resources you create and access to all operations on the `Microsoft.Resources/deployments` resource type. For example, to create a virtual machine, you need `Microsoft.Compute/virtualMachines/write` and `Microsoft.Resources/deployments/*` permissions. For a list of roles and permissions, see [Azure built-in roles](../../role-based-access-control/built-in-roles.md).
4750

4851
### Create an SSH key pair
4952

@@ -521,4 +524,5 @@ To learn more about AKS and walk through a complete code to deployment example,
521524
[kubernetes-deployment]: ../concepts-clusters-workloads.md#deployments-and-yaml-manifests
522525
[ssh-keys]: ../../virtual-machines/linux/create-ssh-keys-detailed.md
523526
[new-az-aks-cluster]: /powershell/module/az.aks/new-azakscluster
524-
[az-sshkey-create]: /cli/azure/sshkey#az_sshkey_create
527+
[az-sshkey-create]: /cli/azure/sshkey#az_sshkey_create
528+
[baseline-reference-architecture]: /azure/architecture/reference-architectures/containers/aks/baseline-aks

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

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,27 @@
11
---
2-
title: 'Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Azure CLI'
2+
title: 'Quickstart: Create an Azure Kubernetes Service (AKS) cluster using Azure CLI'
33
description: Learn how to quickly create a Kubernetes cluster, deploy an application, and monitor performance in Azure Kubernetes Service (AKS) using Azure CLI.
44
ms.topic: quickstart
55
ms.date: 10/23/2023
66
ms.custom: H1Hack27Feb2017, mvc, devcenter, seo-javascript-september2019, seo-javascript-october2019, seo-python-october2019, devx-track-azurecli, contperf-fy21q1, mode-api, devx-track-linux
77
#Customer intent: As a developer or cluster operator, I want to create an AKS cluster and deploy an application so I can see how to run and monitor applications using the managed Kubernetes service in Azure.
88
---
99

10-
# Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Azure CLI
10+
# Quickstart: Create an Azure Kubernetes Service (AKS) cluster using Azure CLI
1111

12-
Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you quickly deploy and manage clusters. In this quickstart, you:
12+
Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you quickly create and manage clusters. In this quickstart, you:
1313

14-
* Deploy an AKS cluster using the Azure CLI.
14+
* Create an AKS cluster using the Azure CLI.
1515
* Run a sample multi-container application with a group of microservices and web front ends simulating a retail scenario.
1616

1717
> [!NOTE]
1818
> This sample application is just for demo purposes and doesn't represent all the best practices for Kubernetes applications.
1919
2020
:::image type="content" source="media/quick-kubernetes-deploy-portal/aks-store-application.png" alt-text="Screenshot of browsing to Azure Store sample application." lightbox="media/quick-kubernetes-deploy-portal/aks-store-application.png":::
2121

22+
> [!NOTE]
23+
> To get started with quickly provisioning an AKS cluster, this article includes steps to create a cluster with default settings for evaluation purposes only. Before creating 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.
24+
2225
## Before you begin
2326

2427
* This quickstart assumes a basic understanding of Kubernetes concepts. For more information, see [Kubernetes core concepts for Azure Kubernetes Service (AKS)][kubernetes-concepts].
@@ -459,4 +462,5 @@ This quickstart is for introductory purposes. For guidance on creating full solu
459462
[azure-monitor-containers]: ../../azure-monitor/containers/container-insights-overview.md
460463
[kubernetes-deployment]: ../concepts-clusters-workloads.md#deployments-and-yaml-manifests
461464
[aks-solution-guidance]: /azure/architecture/reference-architectures/containers/aks-start-here?WT.mc_id=AKSDOCSPAGE
462-
[intro-azure-linux]: ../../azure-linux/intro-azure-linux.md
465+
[intro-azure-linux]: ../../azure-linux/intro-azure-linux.md
466+
[baseline-reference-architecture]: /azure/architecture/reference-architectures/containers/aks/baseline-aks

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using the Azure portal'
2+
title: 'Quickstart: Create an Azure Kubernetes Service (AKS) cluster using the Azure portal'
33
titleSuffix: Azure Kubernetes Service
44
description: Learn how to quickly create a Kubernetes cluster, deploy an application, and monitor performance in Azure Kubernetes Service (AKS) using the Azure portal.
55
ms.topic: quickstart
@@ -8,16 +8,19 @@ ms.custom: mvc, seo-javascript-october2019, contperf-fy21q3, mode-ui, devx-track
88
#Customer intent: As a developer or cluster operator, I want to quickly create an AKS cluster and deploy an application so that I can see how to run and monitor applications using the managed Kubernetes service in Azure.
99
---
1010

11-
# Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Azure portal
11+
# Quickstart: Create an Azure Kubernetes Service (AKS) cluster using Azure portal
1212

13-
Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you quickly deploy and manage clusters. In this quickstart, you:
13+
Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you quickly create and manage clusters. In this quickstart, you:
1414

15-
- Deploy an AKS cluster using the Azure portal.
15+
- Create an AKS cluster using the Azure portal.
1616
- Run a sample multi-container application with a group of microservices and web front ends simulating a retail scenario.
1717

1818
> [!NOTE]
1919
> This sample application is just for demo purposes and doesn't represent all the best practices for Kubernetes applications.
2020
21+
> [!NOTE]
22+
> To get started with quickly provisioning an AKS cluster, this article includes steps to create a cluster with default settings for evaluation purposes only. Before creating 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.
23+
2124
## Before you begin
2225

2326
This quickstart assumes a basic understanding of Kubernetes concepts. For more information, see [Kubernetes core concepts for Azure Kubernetes Service (AKS)][kubernetes-concepts].
@@ -455,17 +458,14 @@ To learn more about AKS and walk through a complete code-to-deployment example,
455458
456459
<!-- LINKS - external -->
457460
[kubectl]: https://kubernetes.io/docs/reference/kubectl/
458-
[kubectl-apply]: https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#apply
459461
[kubectl-get]: https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#get
460-
[kubernetes-documentation]: https://kubernetes.io/docs/home/
461462
462463
<!-- LINKS - internal -->
463464
[azure-portal]: https://portal.azure.com
464465
[kubernetes-concepts]: ../concepts-clusters-workloads.md
465466
[az-aks-get-credentials]: /cli/azure/aks#az_aks_get_credentials
466467
[import-azakscredential]: /powershell/module/az.aks/import-azakscredential
467-
[az-group-delete]: /cli/azure/group#az-group-delete
468-
[remove-azresourcegroup]: /powershell/module/az.resources/remove-azresourcegroup
469468
[aks-tutorial]: ../tutorial-kubernetes-prepare-app.md
470469
[preset-config]: ../quotas-skus-regions.md#cluster-configuration-presets-in-the-azure-portal
471-
[intro-azure-linux]: ../../azure-linux/intro-azure-linux.md
470+
[intro-azure-linux]: ../../azure-linux/intro-azure-linux.md
471+
[baseline-reference-architecture]: /azure/architecture/reference-architectures/containers/aks/baseline-aks

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

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,27 @@
11
---
2-
title: 'Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Azure PowerShell'
2+
title: 'Quickstart: Create an Azure Kubernetes Service (AKS) cluster using Azure PowerShell'
33
description: Learn how to quickly create a Kubernetes cluster and deploy an application in Azure Kubernetes Service (AKS) using PowerShell.
44
ms.topic: quickstart
5-
ms.date: 10/23/2023
5+
ms.date: 12/14/2023
66
ms.custom: devx-track-azurepowershell, mode-api, devx-track-linux
77
#Customer intent: As a developer or cluster operator, I want to quickly create an AKS cluster and deploy an application so that 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 PowerShell
10+
# Quickstart: Create an Azure Kubernetes Service (AKS) cluster using Azure PowerShell
1111

12-
Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you quickly deploy and manage clusters. In this quickstart, you:
12+
Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you quickly create and manage clusters. In this quickstart, you:
1313

14-
* Deploy an AKS cluster using Azure PowerShell.
14+
* Create an AKS cluster using Azure PowerShell.
1515
* Run a sample multi-container application with a group of microservices and web front ends simulating a retail scenario.
1616

1717
> [!NOTE]
1818
> This sample application is just for demo purposes and doesn't represent all the best practices for Kubernetes applications.
1919
2020
:::image type="content" source="media/quick-kubernetes-deploy-powershell/aks-store-application.png" alt-text="Screenshot of browsing to Azure Store sample application." lightbox="media/quick-kubernetes-deploy-powershell/aks-store-application.png":::
2121

22+
> [!NOTE]
23+
> To get started with quickly provisioning an AKS cluster, this article includes steps to create a cluster with default settings for evaluation purposes only. Before creating 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.
24+
2225
## Before you begin
2326

2427
* This quickstart assumes a basic understanding of Kubernetes concepts. For more information, see [Kubernetes core concepts for Azure Kubernetes Service (AKS)][kubernetes-concepts].
@@ -440,4 +443,5 @@ To learn more about AKS and walk through a complete code to deployment example,
440443
[kubernetes-deployment]: ../concepts-clusters-workloads.md#deployments-and-yaml-manifests
441444
[remove-azresourcegroup]: /powershell/module/az.resources/remove-azresourcegroup
442445
[aks-tutorial]: ../tutorial-kubernetes-prepare-app.md
443-
[azure-resource-group]: ../../azure-resource-manager/management/overview.md
446+
[azure-resource-group]: ../../azure-resource-manager/management/overview.md
447+
[baseline-reference-architecture]: /azure/architecture/reference-architectures/containers/aks/baseline-aks

0 commit comments

Comments
 (0)