From 3adb149d016472438c56a922a5e8225da22b1620 Mon Sep 17 00:00:00 2001 From: Joseph Pallamidessi Date: Mon, 17 Aug 2026 18:08:20 +0100 Subject: [PATCH] fix(chart): point image repository at the org registry The release workflow builds and pushes the image to ghcr.io/fluidstackio/chalert (IMAGE_NAME = github.repository) and the chart to oci://ghcr.io/fluidstackio/charts, but the chart still defaulted image.repository to the personal ghcr.io/garbett1/chalert, which has no current tags. Downstreams had to override image.repository to avoid ImagePullBackOff. Point the default (and the stale home/sources/README URLs) at the org registry. Co-Authored-By: Claude Opus 4.8 --- README.md | 4 ++-- charts/chalert/Chart.yaml | 4 ++-- charts/chalert/values.yaml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7a2feb7..5a33351 100644 --- a/README.md +++ b/README.md @@ -288,10 +288,10 @@ No manual tagging needed. Just write good commit messages and merge the Release ### Helm Chart -The chart is published to `oci://ghcr.io/garbett1/charts/chalert` on each release. Install with: +The chart is published to `oci://ghcr.io/fluidstackio/charts/chalert` on each release. Install with: ```sh -helm install chalert oci://ghcr.io/garbett1/charts/chalert --version +helm install chalert oci://ghcr.io/fluidstackio/charts/chalert --version ``` ## License diff --git a/charts/chalert/Chart.yaml b/charts/chalert/Chart.yaml index 0d3b692..4b64191 100644 --- a/charts/chalert/Chart.yaml +++ b/charts/chalert/Chart.yaml @@ -4,9 +4,9 @@ description: ClickHouse-native alerting engine following vmalert's architecture type: application version: 0.3.0 appVersion: "0.3.0" -home: https://github.com/garbett1/chalert +home: https://github.com/fluidstackio/chalert sources: - - https://github.com/garbett1/chalert + - https://github.com/fluidstackio/chalert keywords: - alerting - clickhouse diff --git a/charts/chalert/values.yaml b/charts/chalert/values.yaml index b9276e0..475795a 100644 --- a/charts/chalert/values.yaml +++ b/charts/chalert/values.yaml @@ -1,7 +1,7 @@ replicaCount: 1 image: - repository: ghcr.io/garbett1/chalert + repository: ghcr.io/fluidstackio/chalert tag: "0.3.0" pullPolicy: IfNotPresent