Automatically Upgrading Azure Kubernetes Services
Azure provides a means to upgrade Kubernetes clusters using the AKS service. This guide will walk you through using an automation account to upgrade the services on a regular basis, making the process something you don’t need to worry about.
Note that you may want to hold off on doing this for production systems – if for some reason an upgrade were to break currently functionality, there is no means for reverting a cluster back to an original version.
Create a Powershell Core Function App
First, create a function app that runs on PowerShell Core:
After creating the function app, you’ll also want to make sure to increase the standard timeout rate, since this call can take some time to process. Change host.json to have the following:
If you have a large number of clusters you’ll be checking regularly, you should use a standard App Service plan instead, to remove the timeout entirely.
Import Azure CLI into the Function App
Next, you’ll want to import Azure CLI into the Function App, to allow for calling the az
command.
First, you’ll need to install Azure CLI on you local machine. You’ll be copying this directory created into the function app created to use, so after installing, locate the Azure CLI files at C:\Program Files (x86)\Microsoft SDKs\Azure\CLI2.
Connect to FTP using the publish profile for the Function App (access this through the portal) and copy the entire CLI2 folder into the /home directory. __Make sure that all of the files are copied successfully.
To verify everything is working, run the following command:
D:/home/CLI2/wbin/az.cmd
If you get a successful call back, you’ve imported Azure CLI correctly and can now write the code to programmatically upgrade the AKS clusters.
Create Service Principal
Next, you’ll create a service principal that has access to the clusters in mind, so you have an account that can log in and perform the upgrade duties. Run the following command locally when logged in to the subscription desired:
After this is done, you should receive output showing the name, password, and tenant. Add the three of these as configuration values for the Function App as:
- AZ_USER – appId
- AZ_PASS – password
- AZ_TENANT – tenant
Create Timer Function
Next, create a timer function that runs every day, let’s say at noon:
0 0 12 * * *
Use the following codebase.
You can run the function to make sure it is running as intended, while commenting out the az aks upgrade
line to ensure no upgrades occur.
Setting up Failure Alerts
The final (optional) step is setting up a means to alert in case of failure. When creating the Function App, an Application Insights resource should have been created as well. Go the ‘Alerts’ section in the App Insight resource, and create an alert:
Add your email as an action group to notify if there is an issue with failures.