All labs can be done within the Azure CLI (docker samples can be done on Katacoda). This is by design - to avoid issues with Docker Desktop during the workshop. If you have Docker Desktop, you can run the docker containers and K8S workloads locally, but it is not a dependency per se.
- Open the Docker playground on KataKoda
- Run basic docker CLI commands
docker run hello-world
docker images
docker run -it ubuntu
- Switch to the NGINX playground. We'll quickly spin up an NGINX Webserver and access a static site from a browser. Navigate to the docker playgroud. Try a few of docker commands:
docker exec -it containerId /bin/sh
docker pull debian
docker rmi imageName
- Start the Azure Cloud Shell.
- Create a dedicated resource group for the labs in the portal or the CLI. All resources will be housed here.
az group create --name aks-training --location eastus
- Create a Container Registry in the Azure Portal using a unique name. Alternatively, use CLI. Make a note of the ACR name. This will be used through the course
az acr create --resource-group aks-training --name yourACRName --sku Basic --admin-enabled
- Clone the lab Git Repo the Azure Cloud Shell and navigate to the root folder of the repo.
git clone https://github.com/ManojG1978/aks-training.git
cd aks-training/HelloWorldMVC
- Build the Docker Image for the Hello World ASP.NET Core MVC site and push it to the ACR
az acr build --registry yourACRName --image helloworld-mvc:1.0 .
- Create an Azure Container Instance in the portal using the image built. Select networking type as Public and give it a unique DNS label. A new Public IP is created for the container instance. Once created navigate to the URL and review the printed message (host name of the container)
- Create an AKS cluster in the Portal within the resource group created earlier. Choose Node Count as 1 and Node Size as Standard_B2s. Ensure you enable Virtual Nodes under the Node Pools tab. Also enable Enable Container Insights in the Tntegrations tab. Associate the Container Registry we created in step 2.
- Navigate to the HelloWorld folder. This contains a simple console app.
cd HelloWorld
- Setup variables to be used in CLI commands later
AKS_NAME=aks-training-cluster
ACR_NAME=yourACRName
RG_NAME=aks-training
REGION=eastus
- Push Image to your ACR Repo
az acr build --registry $ACR_NAME --image helloworld:1.0 .
- Attach the ACR to the AKS Cluster
az aks update -n $AKS_NAME -g $RG_NAME --attach-acr $(az acr show -n $ACR_NAME --query "id" -o tsv)
- Connect to AKS Cluster
az aks get-credentials --resource-group $RG_NAME --name $AKS_NAME
- Open k8s-pod.yaml using the built-in code editor of the shell. Update the image name with the ACR name in your resource group.
- Deploy HelloWorld Pod from the manifest file
kubectl create -f ./k8s-pod.yaml
- Try some imperative commands with Kubectl like:
kubectl run -i --tty busybox --image=busybox -- sh
- Navigate to the HelloWorldMVC folder of the repo.
- Open k8s-deploy.yaml using the built-in code editor of the shell. Update the image name with the ACR name in your resource group.
- Deploy the service (an ASP.NET Core Application)
kubectl create -f k8s-deploy.yaml
- Investigate the service and the deployment resources. Copy the Public IP of the service and open it on the browser. Note that it make take a couple of minutes to provision the public IP
kubectl get all
kubectl get svc
- Navigate to the voting-app-aspdotnet-core folder of the repo. This is the canonical two-tier sample from Microsoft and Docker, but built using ASP.NET Core.
- Build the Docker Image for the Voting and push it to the ACR
az acr build --registry yourACRName --image vote-app:1.0 .
- Open k8s-deploy-aks.yaml using the built-in code editor of the shell. Update the image name with the ACR name in your resource group.
- Deploy the application (front end ASP.NET Core, backend Redis)
kubectl create -f k8s-deploy-aks.yaml
- Investigate the service and the deployment resources. Copy the Public IP of the service and open it on the browser with port 5000. Note that it make take a couple of minutes to provision the public IP
kubectl get all
kubectl get svc
- Navigate to the voting-app-aspdotnet-core folder of the repo.
- Open k8s-deploy-healthchecks.yaml using the built-in code editor of the shell. Update the image name with the ACR name in your resource group.
- If you already have another deployment of the voting app from the previous exercise, delete it
kubectl delete -f k8s-deploy-aks.yaml
- Deploy the version of voting application, which includes health checks included
kubectl create -f k8s-deploy-healthchecks.yaml
- Investigate the service and the deployment resources. Copy the Public IP of the service and open it on the browser with port 5000. Append /hc to the URL to see the health status. Append /liveness to the URL to check the liveness of the application
kubectl get all
kubectl get svc
- Navigate to the HelloWorld folder of the repo.
- Deploy a pod which stresses memory.
kubectl create -f k8s-pod-limits.yaml
- Investigate the Pod lifecycle and check that the POD is terminated due to OOM limits.
kubectl get pod memory-stress
kubectl describe pod memory-stress
- Navigate to the HelloWorld folder of the repo.
- Create a Job from k8s-job.yaml. This is a simple job that sleeps for 25 seconds. 3 such executions complete the overall job
kubectl create -f ./k8s-job.yaml
- Investigate the jobs, notice parallelism. Play around with commands and notice how the backoffLimit takes effect.
kubectl get jobs --watch
- Open k8s-cronjob.yaml using the built-in code editor of the shell. Update the image name with the ACR name in your resource group.
- Create the Cronjob from the manifest
kubectl create -f ./k8s-cronjob.yaml
- Investigate the jobs, they run approximately every minute
kubectl get cronjob
kubectl get jobs --watch
- Setup variables to hold values of your resource names
AKS_SHARE_NAME=redis
AKS_NAME=aks-training-cluster
ACR_NAME=yourACRName
RG_NAME=aks-training
REGION=eastus
AKS_STORAGE_ACCOUNT_NAME=yourStorageAccount
- Create a storage account, which will house the volumes used by the pods
az storage account create -n $AKS_STORAGE_ACCOUNT_NAME -g $RG_NAME -l $REGION --sku Standard_LRS
export AZURE_STORAGE_CONNECTION_STRING=$(az storage account show-connection-string -n $AKS_STORAGE_ACCOUNT_NAME -g $RG_NAME -o tsv)
- Create a file share to house the redis data files used by the voting app
az storage share create -n $AKS_SHARE_NAME --connection-string $AZURE_STORAGE_CONNECTION_STRING
- Extract the Storage account key and create a secret. This secret will be referenced by the pod volume
STORAGE_KEY=$(az storage account keys list --resource-group $RG_NAME --account-name $AKS_STORAGE_ACCOUNT_NAME --query "[0].value" -o tsv)
kubectl create secret generic storage-key --from-literal=azurestorageaccountname=$AKS_STORAGE_ACCOUNT_NAME --from-literal=azurestorageaccountkey=$STORAGE_KEY
- Deploy the version of the voting app which has volumes attached to the redis pods. Make sure you update the image corresponding to your ACR. This manifest file creates the underlying Persistent Volume and Persistent Volume Claims (Delete any previous deployment of the voting app if they are already running)
kubectl create -f ./k8s-deploy-aks-pv.yaml
kubectl delete -f ./k8s-deploy-aks-pv.yaml
# Delete old deployments - Investigate the K8s objects. Check the redis pod and ensure the volume is mounted.
kubectl get pvc
kubectl describe pod yourredispodName
- Try adding some votes in the app. Delete the redis pod now. K8s will recreate the pod and mount the volume again. However, when you access the application, the previous data would show up. Without Persistent volumes, this data would have been lost permanently.
kubectl delete pod yourredispodName
For more information, check the AKS Doc sample
- In this lab, we would set up a secret natively in K8s and access that within a pod. No Key Vault involved here. First create a generic secret containing two values - user and password
kubectl create secret generic k8ssecret --from-literal=user=u123 --from-literal=password=p123
- Navigate to Secrets folder in the repo and create the Pod from the manifest file. In this scenario, secrets are injected into the pod as environment variables and the pod basically echoes the values on the console.
kubectl create -f ./k8s-secrets-env.yaml
- Check the pod logs to see the un-encrypted values printed to the console
kubectl logs secret-test-pod
- Install the secrets provider for the cluster
az aks enable-addons --addons azure-keyvault-secrets-provider --name <<cluster name>> --resource-group aks-training
- Enable Pod Identity (Preview)
az feature register --name EnablePodIdentityPreview --namespace Microsoft.ContainerService
- Install preview extensions on CLI
az extension add --name aks-preview
az extension update --name aks-preview
- Enable Pod Identity in existing cluster
az aks update -g aks-training -n <<cluster name>> --enable-pod-identity
- Create a Key vault
az keyvault create -n <<vault name>> -g aks-training -l eastus
- Create a user defined managed identity and an associated pod identity
export IDENTITY_RESOURCE_GROUP="aks-training"
export IDENTITY_NAME="application-identity"
az identity create --resource-group ${IDENTITY_RESOURCE_GROUP} --name ${IDENTITY_NAME}
export IDENTITY_CLIENT_ID="$(az identity show -g ${IDENTITY_RESOURCE_GROUP} -n ${IDENTITY_NAME} --query clientId -otsv)"
export IDENTITY_RESOURCE_ID="$(az identity show -g ${IDENTITY_RESOURCE_GROUP} -n ${IDENTITY_NAME} --query id -otsv)"
export POD_IDENTITY_NAMESPACE="podIdentity"
az aks pod-identity add --resource-group $IDENTITY_RESOURCE_GROUP --cluster-name aks-training --namespace ${POD_IDENTITY_NAMESPACE} --name ${IDENTITY_NAME} --identity-resource-id ${IDENTITY_RESOURCE_ID}
- Assign permissions to the new identity to enable it to read your key vault
az keyvault set-policy -n <keyvault-name> --secret-permissions get --spn $IDENTITY_CLIENT_ID
- Create the ServiceProviderClass object mapped to the managed identity. Open the k8s-secretprovider-mi.yaml in the Code editor (Secrets folder) and update keyvaultName with the name of the vault you created, and tenantId with your tenant ID (run az account list for getting tenant ID and subscription ID). Delete the ServiceProvider object if it already exists and recreate
kubectl create -f k8s-secretprovider-mi.yaml
- Create a pod that mounts secrets from the key vault. Delete the pod if it already exists and then recreate
kubectl create -f k8s-nginx-secrets-mi.yaml
- To display all the secrets that are contained in the pod, run the following command
kubectl exec -it nginx-secrets-store-inline -- ls /mnt/secrets-store/
- To display the contents of the connectionString secret, run the following command:
kubectl exec -it nginx-secrets-store-inline -- cat /mnt/secrets-store/connectionString
For More information, refer to the Docs sample
- Navigate to the RBAC folder. Create a certificate for user called bob using (OpenSSL)
openssl genrsa -out bob.key 2048
openssl req -new -key bob.key -out bob.csr -subj "/CN=bob/O=dev"\n
cat bob.csr | base64 | tr -d '\n'
- Open k8s-csr.yaml and update the request field with the output from the previous command (base64 encoded key). Submit the Certificate Signing Request to K8s
kubectl create -f k8s-csr.yaml
- Verify the request is still pending
kubectl get csr
- As cluster admin, approve the request
kubectl certificate approve bob
- Get the signed certificate from the cluster as a .crt file
kubectl get csr bob -o jsonpath='{.status.certificate}' | base64 --decode > bob.crt
- The file, bob.crt is the client certificate that’s used to authenticate Bob. With the combination of the private key (bob.key) and the approved certificate (bob.crt) from Kubernetes, you can get authenticated with the cluster. Add Bob to K8s
kubectl config set-credentials bob --client-certificate=bob.crt --client-key=bob.key --embed-certs=true
- Set the context for Bob
kubectl config set-context bob --cluster=aks-training-cluster --user=bob
- Create a new K8s namespace called dev
kubectl create namespace dev
- Check if Bob can list pods on the dev namespace
kubectl auth can-i list pods --namespace dev --as bob
- Create a K8S role called dev, which has full access to the dev namespace
kubectl create -f ./k8s-role-dev.yaml
- Create the role binding for the dev group
kubectl create -f ./k8s-rolebinding-dev.yaml
- Switch to Bob's context
kubectl config use-context bob
- Check if Bob can list pods on the dev namespace now
kubectl auth can-i list pods --namespace dev
- Try this exercise with another user (say Dave) assigned to the sre namespace.
- Auto-scale deployment using the Horizontal Pod Autoscaler (HPA) using a CPU metric threshold
kubectl autoscale deployment vote-app-deployment --cpu-percent=30 --min=3 --max=6
- Manually scale nodes in the cluster using this command:
az aks scale --resource-group aks-training --name aks-training-cluster --node-count 2
- Setup an autoscaler using the command below (Min 1, Max 2). Alternatively, you could do this in the portal for each of your node pools:
az aks update \
--resource-group aks-training \
--name aks-training-cluster \
--enable-cluster-autoscaler \
--min-count 1 \
--max-count 2
For more information, refer docs
- When we setup the cluster earlier in the lab, we had enabled Container Insights. If not, you can go to the Insights blade on the portal for your AKS cluster and enable it. It might take 5-10 minutes for the data to show up.
- Review the Cluster, Nodes, Controllers, Containers and Deployment tabs respectively.
- For select pods (like Stress), select View Container logs from the right pane
- Play with filters and try reviews log records. You can create your own queries like below:
ContainerInventory
| where Image contains "stress"
- To get familiar with alerts, you can select the Recommended Alerts (Preview) link from the menu. For this exercise, enable the alert for OOM Killed Containers and create an action group to email yourself. Try recreating the memory-stress pod from Lab 7 and verify you get an email alert.
- Use Helm to deploy an NGINX ingress controller
NAMESPACE=ingress-basic
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
helm repo update
helm install ingress-nginx ingress-nginx/ingress-nginx --create-namespace --namespace $NAMESPACE
- Review the services created for Ingress
kubectl get service -l app=nginx-ingress --namespace ingress-basic
- Navigate to the Ingress folder. Create two applications which will serve requests coming through Ingress
kubectl apply -f k8s-ingress-sample.yaml --namespace ingress-basic
- Create the Ingress Routes
kubectl apply -f k8s-ingress-route.yaml --namespace ingress-basic
- Test the ingress controller by access the public IP created from step 3. Test by adding /hello-world-one and /hello-world-two to the URL and see the requested routed to the respective backend deployments
For more information, refer to the Docs sample
- In Lab 2, if you created a cluster without enabling virtual nodes, create a new AKS cluster with Virtual Nodes enabled using the portal.
- Switch to cluster-admin credentials for this cluster
az aks get-credentials -a --resource-group aks-training --name aks-aci
- Examine the node pools and check a node by name virtual-node-aci-linux
kubectl get nodes
- Review the node and observe the taint
kubectl describe node virtual-node-aci-linux
- Navigate to the ACI folder and create a sample deployment by running k8s-virtual-node.yaml, which gets scheduled on the virtual node (observe the toleration setting on the pod which matches the taint)
kubectl create -f k8s-virtual-node.yaml
- Inspect the pod and make a note of the Private IP address:
kubectl get pods -o wide
- Execute a test pod and access the site execute on the ACI Pod
kubectl run -it --rm virtual-node-test --image=debian
- On this pod, install curl utility
apt-get update && apt-get install -y curl
- Access curl -L http://10.241.0.4 (replace with the private IP from 5) from the pod and verify the HTML returned
curl -L http://10.241.0.4
For more information, refer to Doc sample
- Navigate to the HelloWorldMVC folder. Notice the k8s-deploy-rollout.yaml has a section called strategy in the deployment manifest. This is set to RollingUpdate
- Deploy version 1.0 of the application to start with. Ensure you have updated the image name
kubectl create -f k8s-deploy-rollout.yaml
- Now, make a simple change on the page to say Version 2(Views/Home/Index.chtml), rebuild the 2.0 image and push it ACR
az acr build --registry yourACRName --image helloworld-mvc:2.0 .
- Update the existing deployment and update it with version 2.0 of the image
kubectl set image deployment helloworld-mvc-deployment helloworld-mvc=yourACRName.azurecr.io/helloworld-mvc:2.0 --record
- Review rollout status and ensure the upgrade is successful by accessing the site
kubectl rollout status deployment helloworld-mvc-deployment
- Rollback the deployment to the previous version
kubectl rollout undo deployment helloworld-mvc-deployment
- Review deployment history
kubectl rollout history deployment helloworld-mvc-deployment
- Install KEDA into your cluster in a namespace called keda
helm repo add kedacore https://kedacore.github.io/charts
helm repo update
kubectl create namespace keda
helm install keda kedacore/keda --version 2.0.0 --namespace keda
- Creating a new Azure Service Bus namespace & queue
az servicebus namespace create --name yourNamespace --resource-group aks-training --sku basic
- Create a queue called orders.
az servicebus queue create --namespace-name yourNamespace --name orders --resource-group aks-training
- Create a new authorization rule with Management permissions which KEDA requires
az servicebus queue authorization-rule create --resource-group aks-training --namespace-name yourNamespace --queue-name orders --name order-consumer --rights Manage Send Listen
- Get the connection string to connect to the Service Bus queue
az servicebus queue authorization-rule keys list --resource-group aks-training --namespace-name yourNamespace --queue-name orders --name order-consumer
- Create a secret with the connection string obtained from step 5
kubectl create secret generic order-secrets --from-literal=SERVICEBUS_QUEUE_CONNECTIONSTRING=yourConnectionString
- Navigate to the KEDA folder. Deploy your Order processor
kubectl create -f deploy-queue-processor.yaml
- Navigate to the Order Generator folder and run the console app. Make sure you update the connection string from step 5. Create a large number of orders, say 1000
dotnet run
- Review the pods and deployment and see the scale out happening. The number of pods should go up to 20 and then get back to 0 when all order messages are processed. Also, review the metrics on the service bus namespace
kubectl get deploy order-processor
kubectl get pods -l app=order-processor -w
Note: This lab is based on the sample provided by TomKherkov
- In your Azure shell, run the following command to deploy the eShoponContainers reference implementation for Microservices on Kubernetes. This deploys all resources into a resource group called eshop-learn-rg.
. <(wget -q -O - https://aka.ms/microservices-aspnet-core-setup)
- Once the command executes note the endpoint URLs and access the sites
- For more information, checkout the MS Learn module on Microservices