Start your free 14-day ContainIQ trial

Running Kubernetes on Azure with AKS

This article walks users through running a Kubernetes deployment on Azure with AKS, an open-source managed service purpose-built to run Kubernetes clusters.

March 13, 2023
Kasper Siig
DevOps Engineer

There are many reasons why you would want to use Kubernetes. It helps orchestrate containers, ease deployments, and automates the scaling of your applications. Additionally, Kubernetes can also provide load balancing on multiple different nodes, ease your deployment process, and generally help manage your applications.

Azure Kubernetes Service (AKS) is one of the three major cloud Kubernetes offerings, alongside Elastic Kubernetes Service from AWS and Google Kubernetes Engine. In this post you will be given a walkthrough of why you’d want to choose AKS, how to set it up, and what you should be aware of when using AKS.

Why AKS?

If you’re already running some or all of your workload on Azure, AKS is an obvious choice for your cloud solution. It integrates directly with Azure AD, making it easy for you to manage permissions. As well as integrating well with other components, you can also expect great integration with Azure DevOps and GitHub, both Git providers owned by Microsoft.

Additionally, Azure is also the only cloud provider left offering a free master node. Depending on the size of your cluster, the price is negligible, but it’s something to keep in mind. Some small but important features also make a difference.

By default, any security patches are automatically installed in your cluster. General auto-updating is another feature, and yet another great benefit is that AKS supports scale-to-zero. Combine that with the free master node and you can have an AKS resource ready to use, which costs you nothing while you don’t use it.

Azure also offers Azure Monitor for built-in monitoring of cluster performance and health.

Deploying AKS

There are many different ways to deploy an AKS cluster since many third-party tools like Terraform and Pulumi exist. However, there are only two official ways to deploy a cluster:

You’ll be introduced to both in this article.

Using Azure Portal

First, let’s explore the Azure Portal. A prerequisite for following this guide is that you already have an Azure account and subscription set up. Once you’ve opened up the portal, click Create a resource. This will lead you to a page where you can search for various resource types.

Create Resource
Create resource


On this page, search for Kubernetes Service. Click the name in the dropdown menu, then click Create.

Create AKS
Create AKS


First, you need to enter some basic information about your cluster. Select what subscription you want the cluster to be created in, then choose what
resource group you want to use. You can either choose an existing resource group, or you can create a new one. Creating a new one will be denoted by <terminal inline>(new)<terminal inline> in front of the name, as seen in the example below.

Next, choose the name of the cluster. Everything else can be left as default or be modified to your liking; it’ll depend on your needs. If you’re in doubt on what the options mean, you can hover above the Information icon to the right of the field name.

Basic info
Basic info

Next, define your pools. Every Kubernetes cluster has a default node pool, which is the agentpool seen in the example below. Change this to meet your requirements. Here, it is set to the default values.

Node Pools
Node pools


Leaving the values as default is a good choice for almost anyone. It will let you authenticate using Azure AD but still manage RBAC inside the cluster as you otherwise would. Change these values if you want a more integrated experience with Azure AD.

Authentication
Authentication


The only thing you need to change here is checking the Set authorized IP ranges box, and enter <terminal inline><your-ip>/24<terminal inline>. In a production cluster, you likely want this to be the IP of your office or a company VPN, but for now just enter your own IP. This will allow you, and only those using your IP, to manage the cluster. This is an important step, as there are bots constantly scanning the web for open Kubernetes API servers.

Networking
Networking


Here you can also leave all the values as default. What you mostly want to take note of is the Azure Container Registry. If you are using Azure Container Registry, you can set up a direct integration between ACR and AKS. This will make your life a bit easier, as you don’t have to worry about the typically necessary permissions needed with a private registry.

Integrations
Integrations


It’s considered best practice to tag your resources with something like environment, owner, etc. to make finding those resources easier. For this example, the Tags section is left empty.

Tags
Tags


Finally, Azure will verify all the information you’ve entered and make sure the cluster can be created. If you get any validation errors, make sure to fix them. Once validation has passed you can click Create to create your cluster.

Review and Create
Review & create

Using Azure CLI

If you don’t want to use the Azure Portal for creating your cluster—maybe you want to automate the creation for future uses—you can use the Azure CLI as an alternative. A prerequisite is that you’ve set up a subscription in Azure, and that you’ve set up and authenticated the Azure CLI.

You can choose an existing resource group to use for your AKS cluster, or you can create a new one. To create a new cluster, run the following command:

<terminal>az group create --name aks-example --location westeurope<terminal>

Now you’ve got your resource group created, you are almost ready to create the cluster. The next step assumes that you want to monitor your cluster. To do so, you need to register two specific providers within Azure. You can check whether these providers are registered by running the following commands:


az provider show -n Microsoft.OperationsManagement -o table
az provider show -n Microsoft.OperationalInsights -o table

If the output shows they aren’t registered, you can do so by running the following commands:


az provider register --namespace Microsoft.OperationsManagement
az provider register --namespace Microsoft.OperationalInsights

Now you’re ready to deploy your cluster. Doing so via the Azure CLI is easy and only requires that you run the following command:


az aks create \
 --resource-group aks-example \
 --name aks-example \
 --node-count 1 \
 --enable-addons monitoring \
 --api-server-authorized-ip-ranges >your-ip</24
 --generate-ssh-keys

You may notice the <terminal inline>--api-server-authorized-ip-ranges<terminal inline> flag in the command. There are constantly bots scanning the web for open Kubernetes API servers, so it’s important that you restrict the IPs allowed to access your API server. Over time you likely want to set this to your office or a company VPN IP, but for now set it to your own IP.

Cluster Connection

Once your cluster is deployed, either via the Portal or the CLI, you need to connect to it. If you don’t already have <terminal inline>kubectl<terminal inline> installed, you can do so by running <terminal inline>az aks install-cli<terminal inline>. With <terminal inline>kubectl<terminal inline> installed, you need to get the credentials for your cluster. These are obtained by running the following command:

<terminal>az aks get-credentials --resource-group aks-example --name aks-example
<terminal>

<terminal inline>kubectl<terminal inline> is now configured, which you can test by running <terminal inline>kubectl get nodes<terminal inline>.

If you want to get more insight into your cluster once it’s been deployed, you can use Datadog, a software platform to monitor Kubernetes metrics and events. The platform makes it easy for teams to monitor Kubernetes events, metrics, latency by microservice, and logs.

Conclusion

Now you know more about how you can deploy a cluster using AKS. AKS will help you scale your applications to your needs and provide a free master node while doing so. On top of that, it integrates well with Azure AD, making it a great solution if you’re already using Azure.

Start your free 14-day ContainIQ trial
Start Free TrialBook a Demo
No card required
Kasper Siig
DevOps Engineer

As a DevOps engineer, Kasper Siig is accustomed to working with a variety of exciting technologies, from automating simple tasks to CI/CD to Docker. In his previous role, Kasper was a DevOps Engineer at CYBOT, where he led the migration to Kubernetes in production. He has a Computer Science degree from Erhvervsakademi SydVest (Business Academy South West), located in Denmark. Today, Kasper is combining his experience and expertise within software and content, helping companies grow their presence and user base.

READ MORE