From the course: Azure Essential Training for Developers

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Create a managed Kubernetes cluster

Create a managed Kubernetes cluster - Azure Tutorial

From the course: Azure Essential Training for Developers

Start my 1-month free trial

Create a managed Kubernetes cluster

- Creating an Azure managed Kubernetes cluster is super simple. Let's create one now using the Azure Cloud Shell. As you can see, I'm already logged into my Azure account and I'm on the Azure portal. Click on the Azure Cloud Shell icon in the top menu bar to start the Azure Cloud Shell. You can maximize the window so that you can see more of your code. Next, type A-Z, space, A-K-S, space, create which is the command to create an Azure Kubernetes Service Cluster or AKS for short. After the create command, we'll need to specify a few parameters for our AKS cluster. Type dash, dash, resource group for the resource group this cluster will belong to, followed by the name of the resource group you want to use. I'll use dev. Next, is the cluster name. Type dash, dash name followed by the name you'd like to use. Keep in mind that cluster names have a maximum of 63 characters and can use letters, numbers or dashes only.…

Contents