Get Started with Artifact Tracker and Changesets
Learn how to set up Artifact Tracker to automatically track container images and compute changesets between versions.
Artifact Tracker catalogs every container image your pipelines produce and computes a changeset between each artifact version and the previous one. A changeset includes the commits and, optionally, Jira tickets introduced between versions. When you need to know what changed in a release, the changeset shows you without digging through Git history.
This topic walks you through the one-time setup and shows you how to use the day-to-day views once Artifact Tracker is up and running.
Before you begin
You need the following connectors configured. You can reuse existing connectors or create new ones.
Git connector: GitHub, GitLab, Bitbucket, Git, or Harness Code connector to clone the repository and diff commits between versions. Go to Create a Git connector to create one.
Jira or ServiceNow connector: Links tickets to commits. Go to Connect to Jira or ServiceNow connector settings reference to create one.
Kubernetes cluster connector: Runs the pod that performs git diff and ticket lookup. Go to Kubernetes cluster connector settings reference to create one.
Docker registry connector: Pulls the
alpineandalpine/gitimages for git diff and ticket lookup. Go to Docker connector settings reference to create one.Project access: View or Execute permissions on pipelines to view artifact details and changesets. Go to RBAC in Harness to configure roles.
How Artifact Tracker works
The following diagram shows how Artifact Tracker captures and processes container images:
Artifact Tracker records every artifact regardless of whether a release is running. Changesets require a Git connector to compute the commit diff. Linking tickets to changesets requires a ticket connector and a regex pattern to extract ticket IDs from commit messages.
Add the RO Notify step to your build pipeline
The RO Notify step is a pipeline step that reports published artifact details to Release Management. This step acts as the bridge between your CI/CD pipelines and Release Orchestration, enabling automatic tracking of every artifact your pipelines produce.
When you use native Harness build and push steps (such as Build and Push to Docker Registry), artifacts produced within the pipeline are captured automatically without additional configuration. The RO Notify step detects these artifacts and forwards their metadata to the Artifact Tracker catalog.
The RO Notify step runs immediately after your artifact is published and completes in seconds. It does not modify or interact with the artifact itself. It only reports metadata to Release Management for tracking and changeset computation.
Perform the following steps to add the RO Notify step to your build pipeline:
In your build pipeline, click Add Stage after the stage that publishes the artifact.
Select Custom as the stage type, then click Set Up Stage.
Enter a stage name, such as
Notify Release Management, then click Save.In the Execution tab, click Add Step.
Select RO Notify from the step library.
Configure the RO Notify step:
Name: Enter a step name, such as
Report Artifact.Leave other fields empty if you are using native Harness build and push steps. The step will automatically detect and capture published artifacts.
Click Apply Changes, then Save the pipeline.
Configure default connectors
Default connectors apply to all mapped services unless overridden at the service mapping level. Connector configuration is available at the project, organization, or account level. The defaults you set on this page are inherited by every mapped service unless overridden.
Perform the following steps to configure default connectors:
In Harness, navigate to Release Orchestration.
In the left navigation, under Artifacts, click Configurations.
Click Connectors.
Configure the following integrations:
Git Integration
Configure the Git connector for commit comparison between artifact versions.
Perform the following steps to configure Git integration:
Under Git Integration, click Git Provider.
Select Harness Code Repository or a third-party Git provider.
If you selected a third-party provider, select the Git Connector from the dropdown.
Click Save.
Ticket Integration
Configure the ticket connector to link Jira or ServiceNow tickets to changesets.
Perform the following steps to configure ticket integration:
Under Ticket Integration, click Ticket Connector.
Select your Jira or ServiceNow connector from the dropdown.
(Optional) Enter a Ticket Regex Pattern if you need a different pattern from the default
[A-Z]+-[0-9]+. The default pattern matches Jira-style ticket keys such asRM-123orABC-4567(one or more uppercase letters, a dash, then one or more digits). Leave blank to use the default.Click Save.
Infrastructure
Configure the Kubernetes cluster connector and namespace where changeset pods run.
Perform the following steps to configure infrastructure:
Under Infrastructure, select the Kubernetes Cluster Connector from the dropdown.
Enter the Namespace where changeset pods will run.
Click Save.
Artifact Registry
Configure the Docker registry connector to pull container images for git diff and ticket lookup.
Perform the following steps to configure the artifact registry:
Under Artifact Registry, select the Docker Registry Connector from the dropdown.
Click Save.
Semantic Versioning
Semantic versioning is enabled by default. When enabled, changesets compare semantic versions instead of arrival order.
For example, if payment-service has versions 1.0.0 and 2.0.0, and hotfix 1.0.1 arrives later, the changeset compares 1.0.0 to 1.0.1 instead of 2.0.0 to 1.0.1.
Perform the following steps to disable semantic versioning:
Under Semantic Versioning, toggle the setting to Off.
Click Save.
Map your services
Service mappings connect artifact paths to Harness CD services and apply default connector settings. Artifacts that do not match any mapping are still stored in the catalog, but changesets are not computed until you create a mapping.
Perform the following steps to create a service mapping:
In the left navigation, under Artifacts, click Configurations.
Click Service Mappings.
Click Create Service Mapping.
Configure the mapping:
Artifact Path: Enter the artifact path, for example
my-org/payment-service.Artifact Registry: (Optional) Select a specific registry to scope the mapping.
Service Ref: Select the Harness CD service this artifact belongs to.
(Optional) Override any default connector settings for this specific mapping:
Git Connector: Select a different Git connector if this service uses a different repository.
Ticket Connector: Select a different ticket connector or modify the ticket regex pattern.
Semantic Versioning: Toggle to enable or disable for this specific service.
Click Save.
Repeat these steps for each service you want to track.
Link artifacts to releases (optional)
Artifacts are captured in the catalog regardless of this step. Complete this step only if you want to link specific artifact versions to a release.
Perform the following steps to link artifacts to a release:
Open the release process where you want to capture artifacts.
Add a Pipeline Queue activity to the release process.
Configure the Pipeline Queue activity to listen for the build pipeline that publishes the artifact.
While the Pipeline Queue activity is running, any matching pipeline execution that includes the RO Notify step automatically links its published artifacts to the release.
If no release is listening, artifacts are still captured in the catalog but are not attached to a specific release.
How artifacts are automatically tracked
After you complete the setup steps, the process runs automatically. When your build pipeline publishes a new image version:
The RO Notify step reports the artifact details to Release Management, which records the artifact in the catalog.
If a release is listening (from the Link artifacts to releases step) and a service mapping exists (from the Map your services step), the artifact is linked to the release.
If a Git connector is configured, Release Management diffs this version against the previous version and lists the commits.
If a ticket connector and regex pattern are configured, commit messages are scanned for ticket IDs, which are resolved against Jira or ServiceNow and attached to the changeset.
The first artifact received for a mapping has no previous version to diff against. It becomes the baseline. The next version produces the first changeset.
View artifact catalog and changesets
After setup and pipeline runs complete, view artifacts and changesets.
View all artifacts
Perform the following steps to view all artifacts:
In the left navigation, under Artifacts, click Explorer.
Use the grouping options to filter by service or artifact path.
Click on any artifact to view all tags and versions for that artifact.
View changesets
Perform the following steps to view changesets:
In the left navigation, under Artifacts, click Changesets.
Use the filters to search by:
Artifact path
Commit SHA
Ticket ID
Click on any changeset to view:
Commits introduced between the two versions
Linked Jira or ServiceNow tickets
Changeset status (Success, Failed, or Running)

View changesets in a release
Perform the following steps to view changesets in a release:
Navigate to the specific release.
Click the Changesets tab.
View all changesets tied to this release, including:
Commit lists
Linked tickets
Changeset status

Manage changesets
Retry failed changesets and edit tags when the baseline version is incorrect.
Retry a failed changeset
If a changeset fails because of a git clone timeout or Jira being unreachable, perform the following steps to retry:
Navigate to Artifacts > Changesets.
Click on the failed changeset.
Review the error logs to understand the failure.
Click Retry Changeset to recompute the changeset.
Edit changeset tags
If the baseline version is incorrect because an out-of-band hotfix was not captured, perform the following steps to edit tags:
Navigate to Artifacts > Changesets.
Click on the changeset you want to edit.
Click Edit Tags.
Update the From Tag and To Tag tags to the correct versions.
Click Apply, then click Retry Changeset to recompute the diff.
Connector configuration and available data
The following table shows what data is available based on the connectors you configure:
Not configured
Not configured
Artifact tracked in the catalog only. No changeset.
Configured
Not configured
Artifact tracked with changeset showing commits. No ticket links.
Configured
Configured
Artifact tracked with changeset showing commits and linked tickets.
Not configured
Configured
Artifact tracked only. Tickets cannot be extracted without a commit diff.
Troubleshooting
Next steps
After configuration, you can:
Go to Modeling Releases to learn how to link artifacts to releases.
Go to Release Calendar to visualize releases and artifacts on a calendar view.
Go to Release Notifications to set up Slack alerts for artifact and changeset events.
Last updated
Was this helpful?