Automated deployments for Azure Kubernetes Service (AKS)

Automated deployments simplify the process of setting up a GitHub Action and creating an automated pipeline for your code releases to your Azure Kubernetes Service (AKS) cluster. Once connected, every new commit you make kicks off the pipeline, resulting in updates to your application.

Note

Private clusters are currently not supported.

Prerequisites

Configure an automated deployment

  1. In the Azure portal, navigate to your AKS cluster resource.
  2. From the service menu, under Settings, select Automated deployments > Create. This presents you with two options: Automatically containerize and deploy and Deploy an application.
  3. If you have an application that isn't yet containerized, you can select Automatically containerize and deploy to allow Azure to take care of the process for you. If you already have a containerized application, select Deploy an application.

Automatically containerize and deploy an application to your AKS cluster

  1. Enter a name for your workflow, and then select Authorize access to connect your Azure account with your GitHub account. After your accounts are linked, choose which repository and branch you would like to create the GitHub Action for.
  2. Back in the Azure portal, fill out the remaining fields, providing details about your application that will be used to automatically generate deployment artifacts.
  3. Review and verify the automated deployment.

Deploy an already containerized application to your AKS cluster

  1. Enter a name for your workflow, and then select Authorize access to connect your Azure account with your GitHub account. After your accounts are linked, choose which repository and branch you would like to create the GitHub Action for.
  2. Select Next: Image and choose your Dockerfile, Azure container registry, and image name.
  3. Select Next: Deployment details, and decide whether you want to deploy with Helm or regular Kubernetes manifests. Once decided, select the appropriate deployment files from your repository and decide which namespace you want to deploy into.
  4. Review and verify the automated deployment.

Review and verify the automated deployment

  1. When finished, select Next: Review, and review your deployment.

  2. Select Next: Deploy to finish the creation of the automated deployment.

  3. Select View pull request to see your GitHub Action.

    The final screen of the deployment process. The view pull request button is highlighted.

  4. Merge the pull request to kick off the GitHub Action and deploy your application.

    The pull request page in GitHub. The merge pull request button is highlighted.

  5. Once your application is deployed, go back to the Azure portal, navigate to your AKS cluster resource, and select Automated deployments to see the status of your deployment.

Clean up resources

You can remove any related resources that you created when you don't need them anymore individually or by deleting the resource group to which they belong. To delete your automated deployment, navigate to the automated deployment dashboard and select ..., then select Delete and confirm your action.

Next steps

You can modify these GitHub Actions to meet the needs of your team by opening them up in an editor like Visual Studio Code and changing them as you see fit.

Learn more about GitHub Actions for Kubernetes.