Skip to main content

Kargo Quickstart

This quickstart will walk you through implementing Kargo with the Akuity Platform, to manage the promotion of applications in a declarative fashion.

After completing this tutorial, you will have a Kubernetes cluster, with Applications deployed using an Argo CD control plane, and environment promotions managed by Kargo.

1. Prerequisites

To follow this tutorial make sure you have minimal working knowledge of the following concepts:

The tutorial requires that you also have a GitHub Account. You will use it to:

  • host a public repo for Argo CD and Kargo
  • utilize GitHub Codespaces for the workshop environment. Ensure that you have a quota available. The free tier includes 4 vCPU at 30 hours a month.
  • create a free account on the Akuity Platform.

The tutorial was written and tested using the following tool and component versions:

  • Argo CD: v2.10.1
  • Kargo: v0.5.2
  • Docker Desktop: 4.13.1
  • Kubernertes: v1.29.1
  • kind: v0.22.0

1.1. GitHub PAT Setup

A GitHub Personal Access Token (PAT), is needed for creating/updating/pushing images and image changes to the GitHub Container Registry (ghcr). Kargo also needs this PAT to write back changes to the GitHub repo we will be working with.


  1. Navigate to https://github.com/settings/tokens/new.
  • Or from the UI:
    • https://github.com/settings/profile
    • Developer settings at the bottom of the left hand menu
    • Personal access tokens -> Tokens (classic)
    • Generate new token -> Generate new token (classic)
  1. Set Note to kargo-quickstart.
  2. Set the Expiration to 7 days.
  3. Under "Select scopes", select:
  • repo
  • write:packages
  • user:email
  1. Click Generate token at the bottom of the page.
  2. Copy the generated PAT.

2. Setting up Your Environment

In this section, you will be setting up your test environment using GitHub Codespaces and setting up an account on the Akuity Platform.

2.1. Create the Repository from a Template

We have created a sample repo that holds everything you need in order to get started with Kargo. We will also be using this repo in a Codespace as a test environment.


  1. Click this link or click "Use this template" from the https://github.com/akuity/kargo-quickstart-template repo main page.

  2. Ensure the desired "Owner" is selected (e.g., your account and not an organization).

  3. Enter a unique name for the "Repository name".

  4. Then click Create repository from template.

  5. Next, you will start a new Codespace by clicking the green Code button on the repo page, selecting the Codespaces tab, and then selecting Create codespace on main.

warning

If you have other Codespaces running, you may run into usage limits. Shutdown Codespaces that you are not using, while doing this tutorial.


The Codespace will open in another browser tab with information about the progress of setting it up. Once it is done, you should see a terminal in the browser with the repo open.

2.1.1. Verify Environment

Part of the Codespace setup was to install all necessary tools, which includes setting up kind, kubectl, and kargo cli tools. You can verify that the environment is ready by going through the following steps:


  1. Verify that kind is installed and running a Kubernetes cluster.

    kind get clusters

    You should see the following output:

    kargo-quickstart
  2. Check that the cluster works by running kubectl get nodes.

    % kubectl get nodes
    NAME STATUS ROLES AGE VERSION
    kargo-quickstart-control-plane Ready control-plane 7m44s v1.29.2

    Fetching the nodes will demonstrate that kubectl can connect to the cluster and query the API server. The node should be in the "Ready" status.

  3. Export your GitHub PAT in the KARGO_QUICKSTART_PAT environment variable.

    export KARGO_QUICKSTART_PAT=<your github pat>

    You will be using your GitHub PAT later in this tutorial.

2.1.2. Create Image Repository

This tutorial will show you how to promote image updates with Kargo. This means we will be using an image in your GitHub Container Registry (ghcr).

warning

The free tier of ghcr is capped at 500MB images. This is enough for what you are going to be testing with. If you run into any issues, please check your Packages tab in your GitHub account page found on https://github.com/<your-username>


The easiest way to create a new ghcr.io image repository is by retagging/pushing an existing image with your GitHub username.

  1. Login to ghcr using your GitHub Username and your GitHub PAT

    docker login --username ${GITHUB_USER} --password ${KARGO_QUICKSTART_PAT} ghcr.io
  2. Create the example image in your account using the docker buildx imagetools command.

    docker buildx imagetools create ghcr.io/akuity/guestbook:latest -t ghcr.io/${GITHUB_USER}/guestbook:v0.0.1

    You will now have a guestbook container image repository https://github.com/users/${GITHUB_USER}/packages/container/package/guestbook

2.2. Akuity Platform Sign Up

In this scenario you will sign up for the Akuity Platform and create a Kargo instance.

As GitHub is being used to host our sample environment, the Akuity Platform will be used to host our Kargo instance. To do that, you will have to sign up for a free trial.

  1. Create an account on the Akuity Platform.

  2. To log in with GitHub SSO, click "Continue with GitHub".

note

You can also use Google SSO or an email and password combination.

  1. Set up an Organization.

Before you create a Kargo instance, you will need to create an organization (if you do not already have one).

  1. Click the create or join link.

  2. Click + New organization in the upper right-hand corner of the dashboard.

  3. Name your organization following the rules listed below the Organization Name field.

2.3. Create a Kargo Instance

  1. Navigate to Kargo.

  2. Click + Create in the upper right-hand corner of the dashboard.

  3. Name your instance following the rules listed below the Instance Name field.

  4. (Optionally) Choose the Kargo version you want to use. It is recommended to use the default one.

  5. Click Create.

It will take several seconds to create your new Kargo instance (See Progressing status next to your new instance's name), so please be patient.

2.4. Connect a Kargo Agent

After your new Kargo instance is created successfully ( See Healthy status next to your new instance's name), you will need to register an agent.

  1. Navigate to Kargoyour instanceAgents.

  2. Click + Register an agent to add a Kargo Agent.

  3. Input your Agent Name.

  4. Leave Self-hosted Kargo Agent disabled.

note

You can also self-host the Kargo agent on your own Kubernetes cluster. This is usually needed when your cluster is behind a firewall. You do this by enabling the Self-hosted Kargo Agent option.

Select the self-hosted agent option if Kargo needs to run Kubernetes Jobs as part of testing/verification, or if Kargo needs to interface with private, self-hosted services including:

  • private Git servers
  • internally accessible metric providers (e.g. self-hosted Prometheus)
  • self-managed Argo CD
  1. Leave Akuity Managed Argo CD empty for now.
note

Kargo can interface with Argo CD instances to sync applications, reflect application health, and verify successful sync operations during promotion.

  1. Leave Set as Default Shard enabled.

  2. Click Connect.

After installing the agent into your Kargo instance, you should see the agent listed in the Akuity dashboard go from Progressing to a green heart icon with the status of Healthy next to the agent name.

2.5. Enable the Kargo admin Account

The Kargo instances you create inside the Akuity Platform do not enable the admin user by default. For this tutorial, we will need to enable the admin account.

To enable the admin user on a Kargo instance:

  1. Navigate to Kargoyour instanceSettingsSystem Accounts.

  2. Enable the Admin Account switch.

  3. Specify a custom password and click Save

2.6. Accessing Kargo

Kargo comes with a feature-rich web UI that can be used to manage and visualize your CD pipelines. We will be using both the web-based UI and CLI to interact with Kargo.

2.6.1. Kargo Web UI

Kargo Instance URL

  1. Click on the instance-id.kargo.akuity.cloud.

  2. Log in with the username admin and the password set in the enabling the admin user section.

2.6.2. Kargo CLI

Since the kargo CLI is going to be used, we will need to set it up.


The kargo CLI is already preinstalled in the Codespace. You can log in by using the kargo login command.

kargo login <instance_url> \
--admin \
--password <password>

3. Using Kargo For Promotions

Kargo handles promotion by monitoring repositories (Git, Image, Helm) for changes and making the necessary commits to your Git repository, leaving the reconciliation to the Argo CD GitOps controller. Furthermore, Kargo will also verify these promotions once they are deployed.

tip

For more information about Kargo and the concepts behind it, please see the official documentation

In the following sections, you will explore how Kargo handles stage-to-stage promotions using GitOps.

3.1. Adding Repository Secret

In order for Kargo to manage the progression of Freight from stage to stage, Kargo will often require read/write permissions on private GitOps repositories and read-only permissions on private container image and/or Helm chart repositories.

Also, Kargo has a concept called a Project. A Project is a collection of related Kargo resources that describe one or more delivery pipelines and is the basic unit of organization and tenancy in Kargo. It is also where credentials are scoped.

Since Kargo needs to write back to the Git repository, it will need access to the GitHub PAT to interact with it.

warning

Make sure you are logged-in to the Kargo API as described in the Kargo CLI section


  1. Create a Kargo Project called kargo-simple

    kargo create project kargo-simple
  2. Create Git credentials with the kargo CLI in the kargo-simple project.

    kargo create credentials github-creds \
    --project kargo-simple --git \
    --username ${GITHUB_USER} --password ${KARGO_QUICKSTART_PAT} \
    --repo-url https://github.com/${GITHUB_REPOSITORY}
  3. Create Image credentials with the kargo CLI in the kargo-simple project.

    kargo create credentials ghcr-creds \
    --project kargo-simple --image \
    --username ${GITHUB_USER} --password ${KARGO_QUICKSTART_PAT} \
    --repo-url ghcr.io/${GITHUB_USER}/guestbook

3.2. Kargo Setup

This section focuses on getting Kargo-specific objects created. In the end of this section, you will have a CD Pipeline made possible by Kargo primitives that will be set up along this section of this quickstart tutorial. In the end, there will be a Project (which we covered in the previous section), Warehouse, and Stages

3.2.1. Kargo Project

In the section where your GitHub PAT was added to Kargo, we went through the concept of a Project. To reiterate, a Kargo Project is a logical collection of related objects; it is also the basic level of organization and tenancy. Furthermore, RBAC rules are also defined at the project level and project administrators may use projects to define policies, such as whether a stage is eligible for automatic promotions of new freight.

In the previous section a Kargo Project called kargo-simple was created using the kargo CLI; and a walkthrough how you can create a Project in the Kargo UI was also demonstrated. However, you can also create a Project declaratively.

In the root of the Git repository you created based on the template, you should see the following file kargo/project.yaml.

apiVersion: kargo.akuity.io/v1alpha1
kind: Project
metadata:
name: kargo-simple

Applying this declaratively, would look something like this.

  1. Ensure you are logged into your Kargo instance

    kargo login <instance_url> \
    --admin \
    --password <password>
  2. Create Git credentials with the kargo CLI in the kargo-simple project.

    kargo apply -f ./kargo/project.yaml
tip

💡 It is OK to run kargo apply even if you have already created the Project

You should be able to see the kargo-simple listed when you run the kargo get projects command.

$ kargo get projects
NAME PHASE AGE
kargo-simple Ready 22h

3.2.2. Kargo Warehouse

A Kargo Warehouse is where promotable artifacts are staged before they move into the CD Pipeline. Before we get into what a Warehouse is, it is important that you know what a Freight is.

Freight is a set of references to one or more versioned artifacts, which may include one or more Container Images, Kubernetes Manifests from Git, and/or Helm Charts. A collection of these versioned artifacts is what is known as Freight, and it is promoted together as a single promotable unit. You can think of Freight as a "meta-artifact".

Now that you are familiar with Freight, you can understand what a Kargo Warehouse is. A Warehouse not only stages Freight, but it also defines where this Freight comes from via a subscription. A subscription defines where a particular artifact comes from along with any filtering rules.

In the root of the Git repository you created based on the template, you should see the following Warehouse file kargo/warehouse.yaml.

apiVersion: kargo.akuity.io/v1alpha1
kind: Warehouse
metadata:
name: guestbook
namespace: kargo-simple
spec:
subscriptions:
- image:
repoURL: ghcr.io/${GITHUB_USER}/guestbook
tagSelectionStrategy: SemVer

In this scenario, the Warehouse will be subscribed to the ghcr image repo we created earlier. We are using a filtering rule of tagSelectionStrategy set to SemVer, meaning that Kargo will only look for new images that are tagged using Semantic Versioning

tip

For more information about Warehouse filtering rules see the official documentation.

  1. Create the Warehouse by applying the manifest in your repository.

    kargo apply -f ./kargo/warehouse.yaml
  2. Verify that the Warehouse was created with the kargo get warehouses command.

    kargo get warehouses  --project kargo-simple
    NAME SHARD AGE
    guestbook 14m

3.2.3. Kargo Stages

Kargo Stages are a key component to a Kargo CD Pipeline. With traditional CI/CD pipelines, the objective is to promote something from environment to environment. When you hear the term "environment", what you envision will depend significantly on your perspective. A developer may think "It's this specific version of the app that's running" and someone in Operations may think "It's a collection of VPCs, Firewall Rules, and a Region in the Cloud".

To eliminate confusion, Kargo avoids the term "environment" altogether in favor of stage.

The important feature of a stage is that its name ("test" or "prod," for instance) denotes an application instance's purpose and not necessarily its location.

What is important to note is that a Kargo CD Pipelines are created by linking Stages and Warehouses together to create a DAG for your delivery pipeline. Promotion of artifacts moves them into their respective Stages by verifying that they were promoted successfully in the previous step.

In short:

  • Stages subscribe to a Warehouse to get promotable artifacts
  • Stages can also subscribe to one or many other Stage(s) to get those same artifacts.

In the root of the Git repository you created based on the template, you should see the following Stages file kargo/stages.yaml.

Take a look at the first Stage called dev

apiVersion: kargo.akuity.io/v1alpha1
kind: Stage
metadata:
name: dev
namespace: kargo-simple
annotations:
kargo.akuity.io/color: red
spec:
subscriptions:
warehouse: guestbook
promotionMechanisms:
gitRepoUpdates:
- repoURL: https://github.com/${GITHUB_USER}/${GITHUB_REPO}
writeBranch: main
kustomize:
images:
- image: ghcr.io/${GITHUB_USER}/guestbook
path: app/env/dev

Here, the dev Stage is subscribed to the Warehouse we just created (where the Warehouse is subscribed to the Image repository). When the artifacts are promoted, Kargo runs a kustomize edit set image (denoted in the .spec.promotionMechanisms) in the specified Git repository to the specified path. In short, Kargo commits new image versions back into a respository.

The dev Stage gets its artifacts from the Warehouse; but the downstream Stages get those same artifacts presented to them only by subscribing to each other.

For example, the staging Stage is subscribed to the dev Stage

apiVersion: kargo.akuity.io/v1alpha1
kind: Stage
metadata:
name: staging
namespace: kargo-simple
annotations:
kargo.akuity.io/color: amber
spec:
subscriptions:
upstreamStages:
- name: dev
# ...snip

And the prod Stage is subscribed to the staging Stage

apiVersion: kargo.akuity.io/v1alpha1
kind: Stage
metadata:
name: prod
namespace: kargo-simple
annotations:
kargo.akuity.io/color: violet
spec:
subscriptions:
upstreamStages:
- name: staging
promotionMechanisms:
gitRepoUpdates:
- repoURL: https://github.com/${GITHUB_USER}/${GITHUB_REPO}
writeBranch: main
kustomize:
images:
- image: ghcr.io/${GITHUB_USER}/guestbook
path: app/env/prod
pullRequest: {}

Another thing to notice is that the prod Stage is configured to create a pull request, instead of committing directly to the tracked branch. We will go over this in a later section of this tutorial.

  1. To create the Stages, apply the manifest in your repository.

    kargo apply -f kargo/stages.yaml
  2. Verify that the Stages were created with the kargo get stages command.

    kargo get stages --project kargo-simple
    NAME SHARD CURRENT FREIGHT HEALTH PHASE AGE
    dev NotApplicable 20s
    staging NotApplicable 20s
    prod NotApplicable 20s

You should see all 3 stages created. When you look at the Kargo UI, you should see the following

Kargo DAG Screenshot

3.3. Promoting with Kargo

In this section we will be promoting the image we created in the ghcr repo in the Create Image Repository section.

3.3.1. Image Promotion

In this section we will be using Kargo to promote the image you created earlier.


After you navigate to your Kago instance UI:

  1. Click on your kargo-simple Project.

  2. Click on the icon on the dev Stage to initiate promotion.

  3. Click on the available freight (there should only be one).

  4. Click on YES to confirm promotion

  5. The promotion will be progressing as indicated by the icon.

  6. When checking your Git repository, you will notice that Kargo committed back to the repository using kustomize.

  7. In the Kargo UI, repeat the steps to promote the freight into the staging Stage.

  8. Note that the freight will be color-coded to show which stage the artifacts are in.

3.3.2. Promoting Image Update

Now we will simulate a release and use Kargo to promote that update using the same CD Pipeline.


  1. To simulate a release, simply retag an image with a newer semantic version using the docker buildx imagetools command.

    docker buildx imagetools create ghcr.io/akuity/guestbook:latest -t ghcr.io/${GITHUB_USER}/guestbook:v0.0.2
  2. On the Kargo UI, click on the Refresh button on the Warehouse to tell Kargo to fetch more Freight.

info

Kargo will produce Freight even if you don't refresh since Kargo runs a loop to check for new Freight!

  1. Click on the icon on the dev Stage to initiate promotion.

  2. Click on the newly available Freight (tagged with v0.0.2 that you just created)

  3. Click on YES to confirm promotion

  4. The promotion will be progressing as indicated by the icon.

  5. Note that the new Freight will be color-coded to show which stage the artifacts are in.

3.3.3. Pull Request Promotions

In the Kargo Stages section, you had an overview of what a Stage is and how it is used for promotions. Specifically, how Kargo commits changes back to the specified Git repository. You can also configure the Stage to have Kargo submit a PR instead of a direct commit.

Taking another look at the Stages file kargo/stages.yaml. You will see the following in the prod Stage.

spec:
promotionMechanisms:
gitRepoUpdates:
- repoURL: https://github.com/<repo>
# snipped for brevity
pullRequest: {}

Part of the configuration has the pullRequest option, which instructs Kargo to perform a pull request instead of directly commiting. In this seciton, you will see how this works.


  1. Click on the icon on the prod Stage to initiate promotion.

  2. Note that only freight that has been verified in the staging Stage is available for prod.

  3. Click on the available freight.

  4. Click on YES to confirm promotion

  5. The promotion will be progressing as indicated by the icon.

  6. Navigate to your Git repository and click on Pull requests

  7. Note that a new pull request was created - merge it.

  8. Navigate back to the Kargo UI and see that the Freight is now in the prod Stage.

4. Integrating Argo CD

So far, you have been working on Kargo on its own. The real power comes from using Kargo with a GitOps controller (which does the deployment). In this section, Kargo will be integrated with Argo CD to demonstrate an end-to-end GitOps Continuous Promotion pipeline.

4.1. Making the Image Public

When you created the ghcr.io/${GITHUB_USER}/guestbook image in the Create Image Repository section, that image (by default) has its visibility set to "private". This is not an issue when you are using Kargo, as you saw in the Adding Repository Secret section.

Setting up Kubernetes to deploy workloads from a private image is a little more complex and setting up Kuberentes to pull from a registry with private images is beyond the scope of this tutorial. Therefore, you will have to make this image public for the rest of this quickstart.

  1. Navigate to your package setting for the image by going to https://github.com/users/${GITHUB_USER}/packages/container/package/guestbook

  2. Scroll down and click on Change visiblility.

  3. Click on Public.

  4. Type the name of the image, guestbook, to confirm.

  5. Click on I understand the consequences, change package visibility.

  6. Your image is now public.

4.2. Creating an Argo CD Instance

Creating and configuring an Argo CD instance on the Akuity Platform is beyond the scope of this tutorial. So a script has been provided to expedite the process. You will need to create an Akuity Platform token before you run the script.

tip

If you are interested in learning more about managing Argo CD with the Akuity Platform, we recommend going through the Introduction to Argo CD and Advanced GitOps Workshop tutorials.

  1. On the Akuity Platform, navigate to OrganizationAPI Keys+ New Key

  2. Enter a description for your key.

  3. Set the expiration to 7d for 7 days.

  4. Click on 🔒 Admin

  5. Click on Create

  6. Make a note of the AKUITY_API_KEY_ID and AKUITY_API_KEY_SECRET and click Done

  7. Navigate to your codespace and run export AKUITY_API_KEY_ID=<your key id> and export AKUITY_API_KEY_SECRET=<your key secret>

  8. Run bash scripts/setup-argocd-instance.sh. The script can take up to two minutes to run.

  9. Once the script is done, go back to the Akuity Platform, and navigate to Argo CD on the newly created Argo CD instance.

  10. Enter admin as the username and akuity-argocd as the password and then click SIGN IN.

  11. Note that Applications were created as part of the script.

4.3. Kargo Integration

Integrating Kargo and Argo CD together is easy with the Akuity Platform. The integration is a two-step process first consisting of a change on the Akuity platform and the other a change being a manifest update.

4.3.1. Kargo Agent Setup

In a previous section, you set up a Kargo Agent. In order to connect an Argo CD instance, an agent needs to be created for it.

  1. On the Akuity Platform, click on Kargo

  2. Select your Kargo instance.

  3. Click on Agents

  4. Click on + Register an agent

  5. Name your agent (for example: my-argocd-agent).

  6. Click on the Akuity Managed Argo CD dropdown.

  7. Select the Argo CD instance that was created.

  8. Enable Set as Default Shard

  9. Click on Connect. The agents will go from "Progressing" to "Healthy".

  10. (Optionally) You can safely delete the other agent if you like.

4.3.2. Update Kargo Stages

The next step is to update all the Stages to their corresponding Argo CD Applications. To do this you will have to add appName: <yourappname> under spec.promotionMechanisms.argoCDAppUpdates. In this scenario, we will be setting up a 1:1 configuration between Kargo Stages and Argo CD Applications. However, you can have a Kargo Stage manage multiple Argo CD Applications.

spec:
promotionMechanisms:
argoCDAppUpdates:
- appName: myappname
note

For more information on Kargo Stage/Argo CD App configuration, see the offical CRD docs.

To update the Kargo Stages, we will be using a script to expedite the process. Feel free to look at the script, it is a simple patch of the manifests.

  1. Navigate to the Codespace.

  2. Run bash scripts/kargo-argocd-manifestupdate.sh to update the manifests.

  3. Navigate back to the Kargo UI

  4. Select a stage, for example the dev

  5. In the overview page, note that the Argo CD Application has been linked.

  6. (Optionally) Check the other stages and their linked Argo CD Applications.

4.3. Promoting with Kargo

Now that Kargo and Argo CD are integrated, Kargo can promote a change by not only writing back to Git; but also trigger and Argo CD Application Sync.


  1. Navigate to your Codespace and simulate a release by creating a new build.

    docker buildx imagetools create ghcr.io/akuity/guestbook:latest -t ghcr.io/${GITHUB_USER}/guestbook:v0.0.3
  2. Back on the Kargo UI, click on the Refresh button on the Warehouse to tell kargo to fetch more freight.

  3. Click on the icon on to initiate promotion.

  4. Select the new Freight to promote.

  5. Click on "YES" to confirm the promotion.

  6. Navigate to the Argo CD UI and note that Kargo has triggered a sync once it promoted the Freight.

  7. Back in the Kargo UI, the Kargo Stage now reflects the status of the artifacts of the Freight and where they are running.

Feel free to explore promoting all the way down the pipeline, rollback, create new Freight, and add more Argo CD Applications for Kargo to manage their promotion.

5. Summary

You have reached the end of the quickstart. You now have a Kargo instance managaing image promotions with integration with an Argo CD instance managing the deployment of those promotions.

This is just the beginning and by now you might be able to see more complex deployment processes being managed easily with Kargo.