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
+10-6Lines changed: 10 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
---
2
-
title: 'Quickstart: Create an Azure Kubernetes Service (AKS) cluster using the Bicep extensibility Kubernetes provider'
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).
2
+
title: 'Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using the Bicep extensibility Kubernetes provider'
3
+
description: Learn how to quickly deploy 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: 12/27/2023
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.
6
+
ms.date: 01/11/2024
7
+
#Customer intent: As a developer or cluster operator, I want to quickly deploy 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: Deploy an Azure Kubernetes Service (AKS) cluster using the Bicep extensibility Kubernetes provider (preview)
11
11
12
12
Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you quickly deploy and manage clusters. In this quickstart, you:
13
13
@@ -27,6 +27,9 @@ Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you qui
27
27
> }
28
28
> ```
29
29
30
+
> [!NOTE]
31
+
> 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.
32
+
30
33
## Before you begin
31
34
32
35
* This quickstart assumes a basic understanding of Kubernetes concepts. For more information, see [Kubernetes core concepts for Azure Kubernetes Service (AKS)][kubernetes-concepts].
@@ -432,4 +435,5 @@ 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.
7
+
#Customer intent: As a developer or cluster operator, I want to quickly deploy 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
10
# Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Bicep
@@ -16,6 +16,9 @@ Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you qui
16
16
17
17
:::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":::
18
18
19
+
> [!NOTE]
20
+
> 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.
21
+
19
22
## Before you begin
20
23
21
24
* This quickstart assumes a basic understanding of Kubernetes concepts. For more information, see [Kubernetes core concepts for Azure Kubernetes Service (AKS)][kubernetes-concepts].
@@ -40,7 +43,7 @@ Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you qui
40
43
41
44
* 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).
42
45
* 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).
43
-
* 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).
46
+
* 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).
44
47
45
48
### Create an SSH key pair
46
49
@@ -519,4 +522,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
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
---
2
2
title: 'Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Azure CLI'
3
-
description: Learn how to quickly create a Kubernetes cluster, deploy an application, and monitor performance in Azure Kubernetes Service (AKS) using Azure CLI.
3
+
description: Learn how to quickly deploy a Kubernetes cluster and deploy an application 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.
7
+
#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.
8
8
---
9
9
10
10
# Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Azure CLI
@@ -14,6 +14,11 @@ Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you qui
14
14
- Deploy 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
+
:::image type="content" source="media/quick-kubernetes-deploy-cli/aks-store-application.png" alt-text="Screenshot of browsing to Azure Store sample application." lightbox="media/quick-kubernetes-deploy-cli/aks-store-application.png":::
18
+
19
+
> [!NOTE]
20
+
> 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.
21
+
17
22
## Before you begin
18
23
19
24
This quickstart assumes a basic understanding of Kubernetes concepts. For more information, see [Kubernetes core concepts for Azure Kubernetes Service (AKS)][kubernetes-concepts].
@@ -433,5 +438,6 @@ 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-portal.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
---
2
2
title: 'Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using the Azure portal'
3
3
titleSuffix: Azure Kubernetes Service
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.
4
+
description: Learn how to quickly deploy a Kubernetes cluster and deploy an application 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.
8
+
#Customer intent: As a developer or cluster operator, I want to quickly deploy 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
11
# Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Azure portal
@@ -15,6 +15,11 @@ Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you qui
15
15
- Deploy 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
+
:::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":::
19
+
20
+
> [!NOTE]
21
+
> 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.
22
+
18
23
## Before you begin
19
24
20
25
This quickstart assumes a basic understanding of Kubernetes concepts. For more information, see [Kubernetes core concepts for Azure Kubernetes Service (AKS)][kubernetes-concepts].
@@ -462,4 +467,5 @@ 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.
7
+
#Customer intent: As a developer or cluster operator, I want to quickly deploy 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
10
# Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Azure PowerShell
@@ -14,6 +14,11 @@ Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you qui
14
14
- Deploy 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
+
:::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":::
18
+
19
+
> [!NOTE]
20
+
> 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.
21
+
17
22
## Before you begin
18
23
19
24
This article assumes a basic understanding of Kubernetes concepts. For more information, see [Kubernetes core concepts for Azure Kubernetes Service (AKS)](../concepts-clusters-workloads.md).
@@ -422,4 +427,5 @@ To learn more about AKS and walk through a complete code-to-deployment example,
0 commit comments