Push helm chart to Artifact Registry
Pre-requisites
You will need to have an Artifact registry repository created
Create AR Repo
resource "google_artifact_registry_repository" "helm-store" {
repository_id = "helm-store"
description = "helm chart store"
format = "DOCKER"
project = var.project
location = var.region
labels = {
creator = "bstannard"
use = "helm-chart-storage"
user = "bstannard"
}
}
Update the version
field in Chart.yaml
Once you have bumped the version, you can package it
Packaging the chart
helm package <path to chart>
Push the chart
helm push <chart name>-*.tgz oci://europe-west2-docker.pkg.dev/<your GCP project name>/helm-store/
What to read next
Using GCS as a helm repo
Want to make this site better? Open a PR or help fund hosting costs