Skip to main content

Deploy Azure ACR to Azure AKS

This topic explains how to deploy a Docker image in your Azure Container Registry (ACR) repo to your Azure Kubernetes Service (AKS) cluster. Once you've completed this quickstart, you'll be able to easily set up Harness for your own Azure dev, qa, and production deployments.

In this topic you'll learn how to:

  • Set up an ACR to AKS Kubernetes pipeline in Harness.
  • Install and launch a Harness Kubernetes delegate in your target AKS cluster.
  • Connect Harness to your Azure account using a Harness Azure connector.
  • Run the new Kubernetes pipeline and deploy a Docker image to your target cluster.

Requirements for ACR to AKS deployments

Make sure you have the following set up before you begin modeling your pipeline in Harness:

  • Manifests: You can use manifests stored in a Git repo or Harness.

  • **Azure ACR and AKS Permissions:**Ensure you have a Service Principal or Managed Identity you can use to connect Harness to your Azure App registration, and that it has the required permissions:

  • AKS Cluster: You'll need a target AKS cluster for the deployment. You can also host the Harness Delegate in this cluster. Ensure your cluster meets the following minimum requirements for the delegate (it should also have the resources needed for the app you deploying):

    • Number of nodes: 2.
    • vCPUs, Memory, Disk Size: 4vCPUs, 16GB memory, 100GB disk. In AKS, the Standard DS2 v2 machine type is enough for this quickstart.
    • Networking: outbound HTTPS for the Harness connection to app.harness.io, github.com, and hub.docker.com. Allow TCP port 22 for SSH.

Create the AKS deploy stage

Here's how you set up a Harness pipeline stage for your deployment.

  1. In your Harness Project, select Deployments, select Pipelines, and then select Create a Pipeline.
  2. Enter the name Azure Quickstart and select Start. Your Pipeline appears.
  3. Select Add Stage and select Deploy.
  4. Enter the name Deploy Service, select Kubernetes, and then select Set Up Stage. The new stage settings appear.
  5. In Service, select Add Service.

Add the AKS manifest and values YAML

In the new Harness service, you can add a Kubernetes manifest for your deployment. As an example, you can use a publicly-available manifest and values file from Harness.

  1. In Service Definition, in Deployment Type, ensure Kubernetes is selected.
  2. In Manifests, select Add Manifest.
  3. Select K8s Manifest, and select Continue.
  4. In Select K8sManifest Store, select GitHub, and then select New GitHub Connector.
  5. The Git Connector settings appear. Enter the following settings.
    • Name: Enter a name for the connector, like Quickstart.- URL Type: select Repository.
    • Connection Type: Select HTTP.
    • Git Repository URL: Enter https://github.com/wings-software/harness-docs.git.
    • Username and Token: Enter the username and a Github Personal Access Token for your Github account. You'll have to create a Harness secret for the password.
    • In Personal Access Token, select Create or Select a Secret.
    • Select New Secret Text.
    • In Secret Name, enter a name for the secret like github-pat.
    • In Secret Value, paste in a GitHub Personal access token. When you're logged into GitHub, these are typically listed at https://github.com/settings/tokens. For steps on setting up a GitHub PAT, go to Creating a personal access token from GitHub.
    • Ensure you PAT has the repo scope selected:

  1. Select Continue.
  2. In Connect to the provider, select Connect through a Harness Delegate, and select Continue.
  3. Select or add a Harness Delegate to your environment. For details on adding a delegate, go to Delegate installation overview.
  4. Back in Specify K8s Manifest Store, select Continue.
  5. In Manifest Details, enter the following settings, test the connection, and select Submit.

We are going to provide connection and path information for a manifest located at https://github.com/wings-software/harness-docs/tree/main/default-k8s-manifests/Manifests/Files/templates.

  1. Manifest Identifier: Enter an Id, like manifests.
  2. Git Fetch Type: Select Latest from Branch.
  3. Branch: enter main.
  4. File/Folder path: Enter default-k8s-manifests/Manifests/Files/templates.

This is the path from the repo root. The manifest is now listed.

Next, let's add the values.yaml file for the deployment.

Harness supports Go templating with a values YAML file by default so you can template your manifests. Also, you can use Harness expressions in your values.yaml file.

We will use a values.yaml file that uses the <+artifact.image> expression to reference the artifact you will add later in Artifacts.

values YAML file
name: harness-quickstart  
replicas: 1

image: <+artifact.image>
dockercfg: <+artifact.imagePullSecret>

createNamespace: true
namespace: <+infra.namespace>

# Service Type allow you to specify what kind of service you want.
# Possible values for ServiceType are:
# ClusterIP | NodePort | LoadBalancer | ExternalName
serviceType: LoadBalancer

# A Service can map an incoming port to any targetPort.
# targetPort is where application is listening on inside the container.
servicePort: 80
serviceTargetPort: 80

# Specify all environment variables to be added to the container.
# The following two maps, config and secrets, are put into a ConfigMap
# and a Secret, respectively.
# Both are added to the container environment in podSpec as envFrom source.
env:
config:
key1: value1
secrets:
key2: value2
  1. Select Add Manifest.
  2. In Specify Manifest Type, select Values YAML, and select Continue.
  3. In Specify Values YAML Store, select the same GitHub Connector you used for your manifests, and then select Continue.
  4. In Manifest Details, enter the following and select Submit.
  5. Manifest Identifier: values.
  6. Git Fetch Type: Latest from Branch.
  7. Branch: main.
  8. File Path: default-k8s-manifests/Manifests/Files/ng_values_dockercfg.yaml.

The values file is listed.

Next, let's add your artifact from ACR.

Add the ACR artifact

You add an artifact from your ACR repo to the Harness service. For example, we'll create a Harness Azure connector to connect Harness with your ACR repo.

  1. In Artifacts, select Add Artifact Source.
  2. In Artifact Repository Type, select ACR, and then select Continue.
  3. In ACR Repository, select New Azure Connector.
  4. Enter a name for the Connector, such as Azure Quickstart, and select Continue.
  5. In Details, select Specify credentials here.
  6. Enter the credentials for the Azure App registration you want to use. Here's an example of how App registration settings map to the connector's Details:
  1. Select Continue.
  2. In Delegates Setup, select Only use Delegates with all of the following tags, and then select the delegate you used earlier.
  3. Select Save and Continue.
  4. The Connection Test is performed. Once it's completed, you'll be back in ACR Repository. Select Continue.
  5. In Artifact Details, select the Subscription Id where the artifact source is located.
  6. In Registry, select the ACR registry to use.
  7. In Repository, select the repo to use.
  8. In Tag, enter or select the tag for the image.

Here's an example of how ACR settings map to Artifact Details:

  1. Select Submit. The artifact is added to the service.

Now that the artifact and manifest are defined, you can define the target cluster for your deployment.

  1. In the Harness stage, select Continue at the bottom of the Service tab.

Define the target AKS infrastructure

You define the target infrastructure for your deployment in the Environment settings of the pipeline stage. You can define an environment separately and select it in the stage, or create the environment within the stage Environment tab.

There are two methods of specifying the deployment target infrastructure:

  • Pre-existing: the target infrastructure already exists and you simply need to provide the required settings.
  • Dynamically provisioned: the target infrastructure will be dynamically provisioned on-the-fly as part of the deployment process.

For details on Harness provisioning, go to Provisioning overview.

Pre-existing AKS infrastructure

When using a pre-existing infrastructure, the target cluster is your own AKS cluster, hosted in your Azure cloud. This is where we the pipeline deploys your ACR image using the manifest you selected.

  1. In Environment, in Specify Environment, select New Environment. Just as with a Harness service, you can create a new environment or select an existing one. Let's create a new one.
  2. In New Environment, enter a name, select Pre-Production, and select Save. The new Environment appears.
  3. In Specify Infrastructure, select New Infrastructure.
  4. In New Infrastructure, enter a name, and then in Select Infrastructure Type, select Microsoft Azure.
  5. In Cluster details, enter the following.
    1. In Connector, select Select a connector.
    2. Select the Azure Connector you added earlier, and then select Apply Selected.
    3. In Subscription Id, select the Subscription where you AKS cluster is located.
    4. In Resource Group, enter the resource group for your AKS cluster.
    5. In Cluster, select the cluster name.
    6. In Namespace, enter an existing namespace, such as default.

Now that the stage's infrastructure is complete, you can select the deployment strategy for this stage of the pipeline.

Dynamically provisioned AKS infrastructure

Here is a summary of the steps to dynamically provision the target infrastructure for a deployment:

  1. Add dynamic provisioning to the CD stage:
    1. In a Harness Deploy stage, in Environment, enable the option Provision your target infrastructure dynamically during the execution of your Pipeline.

    2. Select the type of provisioner that you want to use.

      Harness automatically adds the provisioner steps for the provisioner type you selected.

    3. Configure the provisioner steps to run your provisioning scripts.

    4. Select or create a Harness infrastructure in Environment.

  2. Map the provisioner outputs to the Infrastructure Definition:
    1. In the Harness infrastructure, enable the option Map Dynamically Provisioned Infrastructure.
    2. Map the provisioning script/template outputs to the required infrastructure settings.

Supported provisioners

The following provisioners are supported for AKS deployments:

Adding dynamic provisioning to the stage

To add dynamic provisioning to a Harness pipeline Deploy stage, do the following:

  1. In a Harness Deploy stage, in Environment, enable the option Provision your target infrastructure dynamically during the execution of your Pipeline.

  2. Select the type of provisioner that you want to use.

    Harness automatically adds the necessary provisioner steps.

  3. Set up the provisioner steps to run your provisioning scripts.

For documentation on each of the required steps for the provisioner you selected, go to the following topics:

Mapping provisioner output

Once you set up dynamic provisioning in the stage, you must map outputs from your provisioning script/template to specific settings in the Harness Infrastructure Definition used in the stage.

  1. In the same CD Deploy stage where you enabled dynamic provisioning, select or create (New Infrastructure) a Harness infrastructure.

  2. In the Harness infrastructure, in Select Infrastructure Type, select Direct or Microsoft Azure.

  3. In Cluster details, enable the option Map Dynamically Provisioned Infrastructure.

    The Azure Infrastructure details section adds a Provisioner setting and configures it as a runtime input.

  4. Map the provisioning script/template outputs to the required infrastructure settings.

To provision the target deployment infrastructure, Harness needs specific infrastructure information from your provisioning script. You provide this information by mapping specific Infrastructure Definition settings in Harness to outputs from your template/script.

For AKS, Harness needs the following settings mapped to outputs:

  • Cluster (for Microsoft Azure connection type)
  • Namespace

For example, here's a snippet of an ARM template that provisions the infrastructure for an AKS deployment and includes the required outputs:


{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"clusterName": {
"type": "string",
"metadata": {
"description": "Name of the AKS cluster."
}
},
...
"outputs": {
"cluster_name": {
"type": "string",
"value": "[parameters('clusterName')]"
},
"namespace_name": {
"type": "string",
"value": "default"
}
}
}

In the Harness Infrastructure Definition, you map outputs to their corresponding settings using expressions in the format <+provisioner.OUTPUT_NAME>, such as <+provisioner.namespace_name>.

Figure: Mapped outputs.

Add a Rollout Deployment step to the AKS stage

  1. Once you are done configuring the stage Environment, select Continue.
  2. In Execution Strategies, select Rolling, and then select Use Strategy.

The Rollout Deployment step is added.

This is a standard Kubernetes rolling update. By default, Harness uses a 25% max unavailable, 25% max surge strategy.

That's it. Now the pipeline stage is complete and you can deploy.

Deploy the AKS pipeline and review

  1. Select Save and then Run.
  2. Select Run Pipeline. Harness will verify the pipeline and then run it.

You can see the status of the deployment, and pause or abort it.

Toggle Console View to watch the deployment with more detailed logging.

Select the Rollout Deployment step and expand Wait for Steady State.

You can see deployment "[name]" successfully rolled out.

Congratulations! The deployment was successful.

Clean up the AKS deployment environment

To delete the Harness Delegate from your Kubernetes cluster, go to Delete a Delegate.