Implement Azure Kubernetes Service and Deploy Nginx web server

Contoso has a number of multi-tier applications that are not suitable to run by using Azure Container Instances. In order to determine whether they can be run as containerized workloads, you want to evaluate using Kubernetes as the container orchestrator. To further minimize management overhead, you want to test Azure Kubernetes Service, including its simplified deployment experience and scaling capabilities. Note: An interactive lab simulation is available that allows you to click through this lab at your own pace. You may find slight differences between the interactive simulation and the hosted lab, but the core concepts and ideas being demonstrated are the same.

Objectives

Task 1:Register the Microsoft.Kubernetes and Microsoft.KubernetesConfiguration resource providers Task 2:Deploy an Azure Kubernetes Service cluster Task 3:Deploy pods into the Azure Kubernetes Service cluster Task 4:Scale containerized workloads in the Azure Kubernetes service cluster

Architecture diagram image

Task 1: Register the Microsoft.Kubernetes and Microsoft.KubernetesConfiguration resource providers.

In this task, you will register resource providers necessary to deploy an Azure Kubernetes Services cluster.

In the Azure portal, open the Azure Cloud Shell by clicking on the icon in the top right of the Azure Portal. If prompted to select either Bash or PowerShell, select PowerShell.

Note: If this is the first time you are starting Cloud Shell and you are presented with the You have no storage mounted message, select the subscription you are using in this lab, and click Create storage. From the Cloud Shell pane, run the following to register the Microsoft.Kubernetes and Microsoft.KubernetesConfiguration resource providers. Register-AzResourceProvider -ProviderNamespace Microsoft.Kubernetes

Register-AzResourceProvider -ProviderNamespace Microsoft.KubernetesConfigurationClose the Cloud Shell pane image

Close the Cloud Shell pane

Task 2: Deploy an Azure Kubernetes Service cluster

In this task, you will deploy an Azure Kubernetes Services cluster by using the Azure portal. In the Azure portal, search for locate Kubernetes services and then, on the Kubernetes services blade, click + Create, and then click + Create a Kubernetes cluster. On the Basics tab of the Create Kubernetes cluster blade, specify the following settings (leave others with their default values):

3.Click Next: Node Pools > and, on the Node Pools tab of the Create Kubernetes cluster blade, specify the following settings (leave others with their default values):

4.Click Next: Access > and, on the Access tab of the Create Kubernetes cluster blade, leave settings with their default values:

5.Click Next: Networking > and, on the Networking tab of the Create Kubernetes cluster blade, specify the following settings (leave others with their default values):

6.Click Next: Integrations >, on the Integrations tab of the Create Kubernetes cluster blade, specify the following settings (leave others with their default values):

7.Click Review + create, ensure that the validation passed and click Create.

Note: In production scenarios, you would want to enable monitoring. Monitoring is disabled in this case since it is not covered in the lab. Note: Wait for the deployment to complete. This should take about 10 minutes. image image image

Task 3: Deploy pods into the Azure Kubernetes Service cluster

In this task, you will deploy a pod into the Azure Kubernetes Service cluster. 1.On the deployment blade, click the Go to resource link. 2.On the az104–9c-aks1 Kubernetes service blade, in the Settings section, click Node pools. 3.On the az104–9c-aks1 - Node pools blade, verify that the cluster consists of a single pool with one node. 4.In the Azure portal, open the Azure Cloud Shell by clicking on the icon in the top right of the Azure Portal. 5.Switch the Azure Cloud Shell to Bash (black background). 6.From the Cloud Shell pane, run the following to retrieve the credentials to access the AKS cluster:

RESOURCE_GROUP='az104-09c-rg1'

AKS_CLUSTER='az104-9c-aks1'

az aks get-credentials --resource-group $RESOURCE_GROUP --name $AKS_CLUSTER

7.From the Cloud Shell pane, run the following to verify connectivity to the AKS cluster:

kubectl get nodes

image

8.In the Cloud Shell pane, review the output and verify that the one node which the cluster consists of at this point is reporting the Ready status. 9.From the Cloud Shell pane, run the following to deploy the nginx image from the Docker Hub:

kubectl create deployment nginx-deployment --image=nginx

image

Note: Make sure to use lower case letters when typing the name of the deployment (nginx-deployment) 10.From the Cloud Shell pane, run the following to verify that a Kubernetes pod has been created:

kubectl get pods

image

11.From the Cloud Shell pane, run the following to identify the state of the deployment:

kubectl get deployment

image

12.From the Cloud Shell pane, run the following to make the pod available from Internet:

kubectl expose deployment nginx-deployment --port=80 --type=LoadBalancer

13.From the Cloud Shell pane, run the following to identify whether a public IP address has been provisioned:

kubectl get service

image

14.Re-run the command until the value in the EXTERNAL-IP column for the nginx-deployment entry changes from to a public IP address. Note the public IP address in the EXTERNAL-IP column for nginx-deployment.

15.Open a browser window and navigate to the IP address you obtained in the previous step. Verify that the browser page displays the Welcome to nginx! message.

image

Task 4: Scale containerized workloads in the Azure Kubernetes service cluster

In this task, you will scale horizontally the number of pods and then number of cluster nodes.

1.From the Cloud Shell pane, and run the following to scale the deployment by increasing of the number of pods to 2:

kubectl scale --replicas=2 deployment/nginx-deployment

2.From the Cloud Shell pane, run the following to verify the outcome of scaling the deployment:

kubectl get pods

image

Note: Review the output of the command and verify that the number of pods increased to 2.

3.From the Cloud Shell pane, run the following to scale out the cluster by increasing the number of nodes to 2:

RESOURCE_GROUP='az104-09c-rg1'

AKS_CLUSTER='az104-9c-aks1'

az aks scale --resource-group $RESOURCE_GROUP --name $AKS_CLUSTER --node-count 2

Note: Wait for the provisioning of the additional node to complete. This might take about 3 minutes. If it fails, rerun the az aks scale command. if you get an error please click link contact Azure support team to increase the resource quota 

4.From the Cloud Shell pane, run the following to verify the outcome of scaling the cluster:

kubectl get nodesNote: Review the output of the command and verify that the number of nodes increased to 2. Note: Review the output of the command and verify that the number of nodes increased to 2.

5.From the Cloud Shell pane, run the following to scale the deployment:

kubectl scale --replicas=10 deployment/nginx-deployment

6.From the Cloud Shell pane, run the following to verify the outcome of scaling the deployment:

kubectl get pods

image

Note: Review the output of the command and verify that the number of pods increased to 10.

7.From the Cloud Shell pane, run the following to review the pods distribution across cluster nodes:

kubectl get pod -o=custom-columns=NODE:.spec.nodeName,POD:.metadata.name

Note: Review the output of the command and verify that the pods are distributed across both nodes. 8.From the Cloud Shell pane, run the following to delete the deployment:

kubectl delete deployment nginx-deployment

List all resource groups created throughout the labs of this module by running the following command:

az group list --query "[?starts_with(name,'az104-09c')].name" --output tsv

Delete all resource groups you created throughout the labs of this module by running the following command:

az group list --query "[?starts_with(name,'az104-09c')].[name]" --output tsv | xargs -L1 bash -c 'az group delete --name $0 --no-wait --yes'

Note: The command executes asynchronously (as determined by the - nowait parameter), so while you will be able to run another Azure CLI command immediately afterwards within the same Bash session, it will take a few minutes before the resource groups are actually removed