From 52363b7e93e551a983a913cf7eb1f97e541525fc Mon Sep 17 00:00:00 2001 From: Kampe Date: Tue, 28 Jul 2026 18:17:30 -0500 Subject: [PATCH 1/2] docs(chart): fix ArgoCD example for native OCI sources (full artifact repoURL + path) Signed-off-by: Kampe --- deploy/charts/buzz/examples/argocd-app.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/deploy/charts/buzz/examples/argocd-app.yaml b/deploy/charts/buzz/examples/argocd-app.yaml index 7e90f64bd7..4f2f578bab 100644 --- a/deploy/charts/buzz/examples/argocd-app.yaml +++ b/deploy/charts/buzz/examples/argocd-app.yaml @@ -16,9 +16,14 @@ metadata: spec: project: default source: - repoURL: oci://ghcr.io/block/buzz/charts - chart: buzz - targetRevision: 0.1.0 + # ArgoCD >= 3.0 native OCI sources: repoURL must be the FULL chart + # artifact path — with the `repoURL: …/charts` + `chart: buzz` split + # form, the `chart` field is ignored for oci:// URLs and the fetch + # fails with a 403 (`repository:block/buzz/charts:pull` denied). The + # spec validator still requires `path`; use "." for OCI sources. + repoURL: oci://ghcr.io/block/buzz/charts/buzz + path: . + targetRevision: 0.1.6 helm: releaseName: buzz values: | From 3427bab3c9db1c91055f4a8d29fc02f6343a24e2 Mon Sep 17 00:00:00 2001 From: npub1t2tgm7d8f995uqvmnm8h88sg3wnpp9a5xysjf6dg3tjmgt3ltulqdp8ehr <5a968df9a7494b4e019b9ecf739e088ba61097b4312124e9a88ae5b42e3f5f3e@buzz.block.builderlab.xyz> Date: Sat, 1 Aug 2026 08:57:14 -0400 Subject: [PATCH 2/2] docs(chart): correct Argo CD OCI version details Co-authored-by: npub1t2tgm7d8f995uqvmnm8h88sg3wnpp9a5xysjf6dg3tjmgt3ltulqdp8ehr <5a968df9a7494b4e019b9ecf739e088ba61097b4312124e9a88ae5b42e3f5f3e@buzz.block.builderlab.xyz> Signed-off-by: npub1t2tgm7d8f995uqvmnm8h88sg3wnpp9a5xysjf6dg3tjmgt3ltulqdp8ehr <5a968df9a7494b4e019b9ecf739e088ba61097b4312124e9a88ae5b42e3f5f3e@buzz.block.builderlab.xyz> --- deploy/charts/buzz/examples/argocd-app.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/charts/buzz/examples/argocd-app.yaml b/deploy/charts/buzz/examples/argocd-app.yaml index 4f2f578bab..c0abcf6f61 100644 --- a/deploy/charts/buzz/examples/argocd-app.yaml +++ b/deploy/charts/buzz/examples/argocd-app.yaml @@ -16,14 +16,14 @@ metadata: spec: project: default source: - # ArgoCD >= 3.0 native OCI sources: repoURL must be the FULL chart + # Argo CD >= 3.1 native OCI sources: repoURL must be the FULL chart # artifact path — with the `repoURL: …/charts` + `chart: buzz` split # form, the `chart` field is ignored for oci:// URLs and the fetch # fails with a 403 (`repository:block/buzz/charts:pull` denied). The # spec validator still requires `path`; use "." for OCI sources. repoURL: oci://ghcr.io/block/buzz/charts/buzz path: . - targetRevision: 0.1.6 + targetRevision: 0.1.7 helm: releaseName: buzz values: |