- Complete previous labs:
This lab has 2 components. First we will use Azure Container Instances to deploy a batch process to periodically update our CosmosDB collection. Then we will use the AKS Virtual Nodes feature to scale out our application using ACI.
-
Create container image for batch processing
az acr build -t hackfest/data-updater:1.0 -r $ACRNAME --no-logs app/data-updater
-
Configure ACR credentials to be stored in Azure Key Vault
We are storing our container images securely in ACR. In order to deploy into ACI, we should use a service principal and safely store these creds in Azure Key Vault as a best practice.
Note. For AKS, we stored these credentials in a Kubernetes secret. In a security lab, we show how to use Key Vault here as well.
# create azure key vault instance AKV_NAME=keyvault${UNIQUE_SUFFIX} echo $AKV_NAME echo export AKV_NAME=keyvault${UNIQUE_SUFFIX} >> ~/.bashrc az keyvault create -g $RGNAME -n $AKV_NAME
Next create a service principal, store it's password in AKV (the registry password)
# note that we could use the service principal created in lab 1 for this az keyvault secret set \ --vault-name $AKV_NAME \ --name $ACRNAME-pull-pwd \ --value $(az ad sp create-for-rbac \ --name $ACRNAME-pull \ --scopes $(az acr show --name $ACRNAME --query id --output tsv) \ --role reader \ --query password \ --output tsv)
Next, store service principal ID in AKV (the registry username)
az keyvault secret set \ --vault-name $AKV_NAME \ --name $ACRNAME-pull-usr \ --value $(az ad sp show --id http://$ACRNAME-pull --query appId --output tsv)
-
Gather environment variables needed for running ACI
This container uses the following envvars to run. You may need to look these up in the Azure portal or use commands from lab 2 to obtain.
# set these values for your lab export MONGODB_USER=<replace> export MONGODB_PASSWORD=<replace> export APPINSIGHTS_INSTRUMENTATIONKEY=<replace>
-
Create ACI using the Azure CLI. Note: You can also complete this step using the Azure portal
az container create \ --name data-updater \ --image $ACRNAME.azurecr.io/hackfest/data-updater:1.0 \ --resource-group $RGNAME \ --location eastus \ --cpu 1 --memory 2 \ --registry-login-server $ACRNAME.azurecr.io \ --registry-username $(az keyvault secret show --vault-name $AKV_NAME -n $ACRNAME-pull-usr --query value -o tsv) \ --registry-password $(az keyvault secret show --vault-name $AKV_NAME -n $ACRNAME-pull-pwd --query value -o tsv) \ --environment-variables MONGODB_USER=$MONGODB_USER \ MONGODB_PASSWORD=$MONGODB_PASSWORD \ APPINSIGHTS_INSTRUMENTATIONKEY=$APPINSIGHTS_INSTRUMENTATIONKEY \ UPDATE_INTERVAL=180000
Note: we are also using an envvar called UPDATE_INTERVAL to determine how often the update will occur in milliseconds.
-
Check the status of your ACI in the Azure portal. Validate the ACI logs and verify your Flights collection is being updated.
To rapidly scale application workloads in an Azure Kubernetes Service (AKS) cluster, you can use Virtual Nodes. With Virtual Nodes, you have quick provisioning of pods, and only pay per second for their execution time. You don't need to wait for Kubernetes cluster autoscaler to deploy VM compute nodes to run the additional pods.
For this lab, we are creating a new AKS cluster. Depending on your quota, you may need to delete your existing AKS cluster.
-
Create a virtual network
az network vnet create \ --resource-group $RGNAME \ --name myVnet \ --address-prefixes 10.0.0.0/8 \ --subnet-name myAKSSubnet \ --subnet-prefix 10.240.0.0/16
And an additional subnet
az network vnet subnet create \ --resource-group $RGNAME \ --vnet-name myVnet \ --name myVirtualNodeSubnet \ --address-prefix 10.241.0.0/16
-
Validate Service Principal
We created a service principal in lab #1 for our previous AKS cluster.
echo $APPID echo $CLIENTSECRET
-
Assign permissions to the virtual network
export VNETID=$(az network vnet show --resource-group $RGNAME --name myVnet --query id -o tsv) echo $VNETID
az role assignment create --assignee $APPID --scope $VNETID --role Contributor
-
Create an AKS Cluster
Create a unique cluster name. This cannot be the same name used in lab #1
export AKSNAME=<replace> export SUBNET=$(az network vnet subnet show --resource-group $RGNAME --vnet-name myVnet --name myAKSSubnet --query id -o tsv)
Create the cluster
az aks create \ --resource-group $RGNAME \ --name $AKSNAME \ --node-count 3 \ --network-plugin azure \ --service-cidr 10.0.0.0/16 \ --dns-service-ip 10.0.0.10 \ --docker-bridge-address 172.17.0.1/16 \ --vnet-subnet-id $SUBNET \ --service-principal $APPID \ --client-secret $CLIENTSECRET
-
Validate cluster
Once the creation is complete, get your credentials and ensure cluster is operating.
az aks get-credentials -n $AKSNAME -g $RGNAME
kubectl get nodes
-
Enable virtual nodes
Add extension
az extension add --source https://aksvnodeextension.blob.core.windows.net/aks-virtual-node/aks_virtual_node-0.2.0-py2.py3-none-any.whl
Enable
az aks enable-addons \ --resource-group $RGNAME \ --name $AKSNAME \ --addons virtual-node \ --subnet-name myVirtualNodeSubnet
Verify
kubectl get nodes NAME STATUS ROLES AGE VERSION aks-nodepool1-56333375-0 Ready agent 5d19h v1.9.11 aks-nodepool1-56333375-1 Ready agent 5d18h v1.9.11 aks-nodepool1-56333375-2 Ready agent 5d18h v1.9.11 virtual-node-aci-linux Ready agent 5d19h v1.11.2
-
Deploy the original application to AKS
These steps are the same as labs 2 and 3. We need to repeat for this new cluster.
a. Create the secret used for our credentials
export MONGODB_USER=$(az cosmosdb show --name $COSMOSNAME --resource-group $RGNAME --query "name" -o tsv)
export MONGODB_PASSWORD=$(az cosmosdb list-keys --name $COSMOSNAME --resource-group $RGNAME --query "primaryMasterKey" -o tsv)
# from the Azure Portal export APPINSIGHTS_INSTRUMENTATIONKEY=<replace>
kubectl create secret generic cosmos-db-secret --from-literal=user=$MONGODB_USER --from-literal=pwd=$MONGODB_PASSWORD --from-literal=appinsights=$APPINSIGHTS_INSTRUMENTATIONKEY -n hackfest
b. Create namespace for our application
kubectl create ns hackfest
c. Install each chart as below:
helm upgrade --install data-api charts/data-api --namespace hackfest helm upgrade --install quakes-api charts/quakes-api --namespace hackfest helm upgrade --install weather-api charts/weather-api --namespace hackfest helm upgrade --install flights-api charts/flights-api --namespace hackfest helm upgrade --install service-tracker-ui charts/service-tracker-ui --namespace hackfest
d. Validate that the service-tracker-ui is up and running. Eg - browse to http://your-public-ip:8080
-
Create a new deployment targeting virtual node
Edit the file
service-tracker-ui.yaml
in the/kubernetes-hackfest/labs/aci
directory.You need to replace the
APPINSIGHTS_INSTRUMENTATIONKEY
with your key. It is on line 26 in the file.- name: APPINSIGHTS_INSTRUMENTATIONKEY value: <replace>
Create the new deployment
kubectl apply -f labs/aci/service-tracker-ui.yaml -n hackfest
Validate that the pod is running on the virtual node and verify that you have an ACI in the Azure portal
kubectl get pod -n hackfest -o wide NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE data-api-7c97ffc64b-vkcjh 1/1 Running 1 12m 10.240.0.70 aks-nodepool1-56333375-1 <none> flights-api-c6fdc889c-cljbb 1/1 Running 0 11m 10.240.0.40 aks-nodepool1-56333375-2 <none> quakes-api-7bfc7b5b4b-c7zqb 1/1 Running 0 11m 10.240.0.50 aks-nodepool1-56333375-2 <none> service-tracker-ui-5c968cfb86-v6c5k 1/1 Running 0 11m 10.240.0.68 aks-nodepool1-56333375-1 <none> service-tracker-ui-aci-6f5f74b5fb-8s7qq 1/1 Running 0 2m18s 10.241.0.4 virtual-node-aci-linux <none> service-tracker-ui-aci-6f5f74b5fb-h5ftf 1/1 Running 0 2m18s 10.241.0.6 virtual-node-aci-linux <none> service-tracker-ui-aci-6f5f74b5fb-qw629 1/1 Running 0 2m18s 10.241.0.5 virtual-node-aci-linux <none> weather-api-867bdcb845-lfm6c 1/1 Running 0 11m 10.240.0.83 aks-nodepool1-56333375-1 <none>
-
Remove the existing local AKS pod and validate
Delete your existing service-tracker-ui deployment. Your web app should still work properly because the deployment has the same labels (the service will remain in place)
kubectl delete deploy service-tracker-ui -n hackfest
-
Clean-up
IMPORTANT. In order to remove the VNET we used above, you must follow the steps below. #doit
When deleting the virtual node and ACI, there are some lingering resources in the VNET that need to be cleaned up. This issue will likely be corrected. Details here. https://docs.microsoft.com/en-us/azure/container-instances/container-instances-vnet#clean-up-resources
In order to delete the SAL, you may need to use this link as well. https://docs.microsoft.com/en-us/rest/api/container-instances/serviceassociationlink/delete
- ACI Docs. https://docs.microsoft.com/en-us/azure/container-instances/container-instances-overview
- AKS Virtual Nodes. https://docs.microsoft.com/en-us/azure/aks/virtual-nodes-cli
- Virtual Kubelet. https://github.com/virtual-kubelet/virtual-kubelet
- Using ACI with ACR. https://docs.microsoft.com/en-us/azure/container-instances/container-instances-using-azure-container-registry