For the complete documentation index, see llms.txt. This page is also available as Markdown.

Helm HTTP

spinner

Use a Helm HTTP registry to host, push, and pull Helm charts using the classic helm repo add / helm pull workflow. Harness Artifact Registry supports the HTTP-based Helm chart repository protocol and optional upstream proxying from external chart repositories.


Prerequisites

  • Helm CLI: Installed and configured on your local machine. Go to the Helm install guide to get started.

  • Harness permissions: Access to create registries and connectors in your Harness project. Go to RBAC in Harness to configure roles.


Create a Helm HTTP Artifact Registry

  1. Navigate to the Artifact Registry module in your Harness project.

  2. Click on New Artifact Registry.

  3. In the Registry Type list, select Helm HTTP Registry.

  4. Provide a Registry Name.

    REGISTRY NAME REQUIREMENTS

    This registry name must start with a letter and can only contain lowercase alphanumerics, _, . and -, and must be unique to your Harness Account.

  5. Optionally, add a Description and Labels for better organization.

  6. Choose visibility between Public and Private.

  7. Click Create Registry to finalize.

HELM HTTP VS OCI HELM

Helm HTTP registries use the classic HTTP-based Helm chart repository protocol (index.yaml + .tgz archives served over HTTP). This is separate from the existing OCI Helm registry type, which uses the helm push oci:// protocol. Choose Helm HTTP when your workflow uses helm repo add and helm pull commands.


Configure an Upstream Proxy (Optional)

An upstream proxy allows your registry to fetch Helm charts from external chart repositories (such as the Prometheus Community Helm charts or other public Helm repositories that still publish over HTTP) if they are not available locally.

Create an upstream proxy

  1. In the Artifact Registry module, click the dropdown next to New Artifact Registry and select Upstream Proxy.

  2. Choose Helm HTTP Registry as the proxy type.

  3. Enter an upstream proxy name.

  4. Enter your remote chart repository URL (for example, https://prometheus-community.github.io/helm-charts).

  5. Choose your Authentication method (Anonymous by default).

  6. Click Create Proxy to establish the connection.

Configure the upstream proxy in your registry

  1. In the Artifact Registry module, select an existing Artifact Registry.

  2. Select the Configuration tab.

  3. Under Advanced (Optional), select Configure Upstream.

  4. Select from the list of compatible proxies to add them to your registry.

  5. Click Save to save the configuration.

UPSTREAM PROXY BEHAVIOR

When you pull a chart through the upstream proxy, it fetches the chart from the configured external repository and caches it locally. Subsequent pulls for the same chart version are served from the local cache.


Set up the client

With your Helm HTTP registry created, you can now authenticate and interact with your Harness registry using the Helm CLI.

1. Configure authentication

In your Harness Helm HTTP Artifact Registry, click Setup Client and then Generate Token to generate an identity token for authentication.

2. Add the Helm repository

Add the Helm repository with authentication:

3. Install a chart

Update the local Helm repository cache:

Pull a specific chart version:

4. Push a chart

Push a chart archive to the registry:

Optionally, push a provenance file for the chart (the chart .tgz must be pushed first):

Last updated

Was this helpful?