Implement Azure Kubernetes Service
Register the Microsoft.Kubernetes and Microsoft.KubernetesConfiguration resource providers.
Today we will register resource providers necessary to deploy an Azure Kubernetes Services cluster.
1. Sign in to the Azure portal.
2. In the Azure portal, open the Azure Cloud Shell by clicking on the icon in the top right of the Azure Portal.
3. If prompted to select either Bash or PowerShell, select PowerShell.
4. 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.KubernetesConfiguration
5. Close the Cloud Shell pane.
Deploy an Azure Kubernetes Service cluster
Now we will deploy an Azure Kubernetes Services cluster by using the Azure portal.
1. 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.
2. On the Basics tab of the Create Kubernetes cluster blade, specify the following settings below. 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.
Deploy pods into the Azure Kubernetes Service cluster
In this next step, we 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
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
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:
Recommended by LinkedIn
kubectl get pods
11. From the Cloud Shell pane, run the following to identify the state of the deployment:
kubectl get deployment
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
14. Re-run the command until the value in the EXTERNAL-IP column for the nginx-deployment entry changes from <pending> 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.
Scale containerized workloads in the Azure Kubernetes service cluster
The last step is to 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
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.
4. From the Cloud Shell pane, run the following to verify the outcome of scaling the cluster:
kubectl get nodes
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
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
9. Close the Cloud Shell pane.
IT Consultant / Sr. Infrastructure Analyst / 12x Microsoft Certified / ITIL Foundation / Lean Navigator/ GSuite Certification
10moThanks for sharing