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/learn/quick-kubernetes-deploy-bicep-extensibility-kubernetes-provider.md
+9-23Lines changed: 9 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,15 +3,15 @@ title: 'Quickstart: Create an Azure Kubernetes Service (AKS) cluster using the B
3
3
description: Learn how to quickly create a Kubernetes cluster using the Bicep extensibility Kubernetes provider and deploy an application in Azure Kubernetes Service (AKS).
4
4
ms.topic: quickstart
5
5
ms.custom: devx-track-bicep
6
-
ms.date: 10/23/2023
6
+
ms.date: 12/14/2023
7
7
#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.
8
8
---
9
9
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)
11
11
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:
13
13
14
-
*Deploy an AKS cluster using the Bicep extensibility Kubernetes provider (preview).
14
+
*Create an AKS cluster using the Bicep extensibility Kubernetes provider (preview).
15
15
* Run a sample multi-container application with a group of microservices and web front ends simulating a retail scenario.
16
16
17
17
> [!NOTE]
@@ -30,6 +30,9 @@ Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you qui
30
30
> }
31
31
> ```
32
32
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
+
33
36
## Before you begin
34
37
35
38
* 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,
#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.
8
8
---
9
9
10
-
# Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Bicep
10
+
# Quickstart: Create an Azure Kubernetes Service (AKS) cluster using Bicep
11
11
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:
13
13
14
-
*Deploy an AKS cluster using Bicep.
14
+
*Create an AKS cluster using Bicep.
15
15
* Run a sample multi-container application with a group of microservices and web front ends simulating a retail scenario.
16
16
17
17
> [!NOTE]
18
18
> This sample application is just for demo purposes and doesn't represent all the best practices for Kubernetes applications.
19
19
20
20
:::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":::
21
21
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
+
22
25
## Before you begin
23
26
24
27
* 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
43
46
44
47
* 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).
45
48
* 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).
47
50
48
51
### Create an SSH key pair
49
52
@@ -521,4 +524,5 @@ To learn more about AKS and walk through a complete code to deployment example,
Copy file name to clipboardExpand all lines: articles/aks/learn/quick-kubernetes-deploy-cli.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,27 @@
1
1
---
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'
3
3
description: Learn how to quickly create a Kubernetes cluster, deploy an application, and monitor performance in Azure Kubernetes Service (AKS) using Azure CLI.
#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.
8
8
---
9
9
10
-
# Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Azure CLI
10
+
# Quickstart: Create an Azure Kubernetes Service (AKS) cluster using Azure CLI
11
11
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:
13
13
14
-
*Deploy an AKS cluster using the Azure CLI.
14
+
*Create an AKS cluster using the Azure CLI.
15
15
* Run a sample multi-container application with a group of microservices and web front ends simulating a retail scenario.
16
16
17
17
> [!NOTE]
18
18
> This sample application is just for demo purposes and doesn't represent all the best practices for Kubernetes applications.
19
19
20
20
:::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":::
21
21
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
+
22
25
## Before you begin
23
26
24
27
* 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
Copy file name to clipboardExpand all lines: articles/aks/learn/quick-kubernetes-deploy-portal.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
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'
3
3
titleSuffix: Azure Kubernetes Service
4
4
description: Learn how to quickly create a Kubernetes cluster, deploy an application, and monitor performance in Azure Kubernetes Service (AKS) using the Azure portal.
#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.
9
9
---
10
10
11
-
# Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Azure portal
11
+
# Quickstart: Create an Azure Kubernetes Service (AKS) cluster using Azure portal
12
12
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:
14
14
15
-
-Deploy an AKS cluster using the Azure portal.
15
+
-Create an AKS cluster using the Azure portal.
16
16
- Run a sample multi-container application with a group of microservices and web front ends simulating a retail scenario.
17
17
18
18
> [!NOTE]
19
19
> This sample application is just for demo purposes and doesn't represent all the best practices for Kubernetes applications.
20
20
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
+
21
24
## Before you begin
22
25
23
26
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,
#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.
8
8
---
9
9
10
-
# Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Azure PowerShell
10
+
# Quickstart: Create an Azure Kubernetes Service (AKS) cluster using Azure PowerShell
11
11
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:
13
13
14
-
*Deploy an AKS cluster using Azure PowerShell.
14
+
*Create an AKS cluster using Azure PowerShell.
15
15
* Run a sample multi-container application with a group of microservices and web front ends simulating a retail scenario.
16
16
17
17
> [!NOTE]
18
18
> This sample application is just for demo purposes and doesn't represent all the best practices for Kubernetes applications.
19
19
20
20
:::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":::
21
21
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
+
22
25
## Before you begin
23
26
24
27
* 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,
0 commit comments