Because modern applications are now using containers, I’ll present to you today a PaaS service, for containers, with Azure Kubernetes Services. As you understand with the name, the orchestrator used is based on Kubernetes, a Google technology.
The advantage of AKS is that you just manage your environment, without taking care of the OS.
You can deploy AKS on Availability Zone now (announced during Ignite 2019).
To start, search in the Azure Market place for AKS and click on Create:
Choose where to deploy resources, a name for your cluster, the region, the Kubernetes version and the DN name. Choose how many nodes you want and the size of each nodes. The master is managed by Microsoft:
Choose to which Virtual Network you want to connect your AKS environment:
As you can see, the AKS Object and the VNet has been deployed in the resource group that you provided and another RG has been created with name MC_RGName_ClusterName_Region. This RG will contains the public IP, the NSG, the Load Balancer and finally, the VMSS:
I’ve my 3 nodes in my VMSS:
Go now on https://shell.azure.com/ and connect to your shell. To connect to your AKS cluster, adapt the following command:
|
To verify that your nodes are present, use the following commands:
|
To see the admin interface of your AKS cluster, use the following command:
|
It will open to you a new tab, to browse your Kubernetes admin console. If you have warning, execute the following command:
|
Now, we will deploy a first application, a wordpress website, from the admin interface. Click on Create on the top of right and paste the following code, to create the secret for the DB:
|
Now, we will create our MySQL container:
|
And now, the wordpress application:
|
As you can see in Azure, 2 new disks for data have been deployed, and a public IP for my wordpress:
And in the load balancer, I’ve a new rule, to redirect the incoming traffic from port 80 to 80:
On Kubernetes, if you go on your Services you will see the public IP to browse the website:
If you browse it, you will see your wordpress installation:
Currently, only one pod of this wordpress is running. To increase it, in Replicas Sets, click on Scale:
And now, an application to vote, provided by Microsoft, directly from the console. I’ll create a file, and put the following code in it:
|
To deploy this, use the following command:
|
The application has been deployed correctly:
Use the following command to get the public IP:
|
If you browse the IP, you will see the application:
Don’t hesitate to use this AKS service to provide an HA and very easy manageable platform.