From e4d93ef4fec60a58944a7d93dd466b0201e664a8 Mon Sep 17 00:00:00 2001 From: unkin-agent Date: Sat, 29 Aug 2026 21:52:52 +1000 Subject: [PATCH] valkey-operator-system: use canonical ghcr.io registry (#437) rke2's `registries.yaml` already rewrites upstream image names to the artifactapi mirror, so manifests must carry canonical upstream names. Only in-house `artifactapi.k8s.syd1.au.unkin.net/docker-internal/...` images stay explicit. Changes: - Set the valkey-operator chart `image.registry` to `ghcr.io`. The `registry`/`repository`/`tag` split is untouched otherwise, so the rendered image is `ghcr.io/valkey-io/valkey-operator:v0.5.0`. `kustomize build --enable-helm apps/overlays/au-syd1/valkey-operator-system` differs from main only in that image string. No other proxied image refs in the file (the `helmCharts[].repo` entry in kustomization.yaml is a Helm chart repo, not a container registry, so it stays on artifactapi). Reviewed-on: https://git.unkin.net/unkin/argocd-apps/pulls/437 Co-authored-by: unkin-agent Co-committed-by: unkin-agent --- apps/overlays/au-syd1/valkey-operator-system/values.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/overlays/au-syd1/valkey-operator-system/values.yaml b/apps/overlays/au-syd1/valkey-operator-system/values.yaml index e1afdf9..cbbd383 100644 --- a/apps/overlays/au-syd1/valkey-operator-system/values.yaml +++ b/apps/overlays/au-syd1/valkey-operator-system/values.yaml @@ -1,5 +1,7 @@ +# rke2's `registries.yaml` rewrites upstream image names to the artifactapi +# mirror, so this manifest carries the canonical upstream registry. image: - registry: artifactapi.k8s.syd1.au.unkin.net/ghcr + registry: ghcr.io repository: valkey-io/valkey-operator tag: v0.5.0