From d4af8c035f415902edd65d3ccf29e4957b2637b0 Mon Sep 17 00:00:00 2001 From: Hugh Hackman Date: Tue, 17 Mar 2026 12:13:31 +0000 Subject: [PATCH] fix: update Headlamp Helm repo URL from headlamp-k8s to kubernetes-sigs The Headlamp project moved to the kubernetes-sigs org. The old Helm chart repository URL (headlamp-k8s.github.io) returns 404, causing E2E workflow failure at the `helm repo add` step. Co-Authored-By: Paperclip --- .github/workflows/e2e.yaml | 2 +- docs/deployment/helm.md | 4 ++-- docs/getting-started/prerequisites.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index e65370d..f9c2e17 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -39,7 +39,7 @@ jobs: uses: azure/setup-helm@v4 - name: Add Headlamp Helm repo - run: helm repo add headlamp https://headlamp-k8s.github.io/headlamp/ && helm repo update + run: helm repo add headlamp https://kubernetes-sigs.github.io/headlamp/ && helm repo update - name: Ensure PVC exists run: kubectl apply -f deployment/headlamp-plugins-pvc.yaml diff --git a/docs/deployment/helm.md b/docs/deployment/helm.md index 702bfcc..26c6f1f 100644 --- a/docs/deployment/helm.md +++ b/docs/deployment/helm.md @@ -19,7 +19,7 @@ Helm provides the easiest way to deploy and manage the plugin in production. Thi ```bash # Add Headlamp Helm repository -helm repo add headlamp https://headlamp-k8s.github.io/headlamp/ +helm repo add headlamp https://kubernetes-sigs.github.io/headlamp/ helm repo update ``` @@ -210,7 +210,7 @@ metadata: namespace: flux-system spec: interval: 1h - url: https://headlamp-k8s.github.io/headlamp/ + url: https://kubernetes-sigs.github.io/headlamp/ ``` ### HelmRelease diff --git a/docs/getting-started/prerequisites.md b/docs/getting-started/prerequisites.md index 50bd721..2838ee2 100644 --- a/docs/getting-started/prerequisites.md +++ b/docs/getting-started/prerequisites.md @@ -84,7 +84,7 @@ kubectl -n kube-system get deployment headlamp -o jsonpath='{.spec.template.spec ```bash # Add Headlamp Helm repository -helm repo add headlamp https://headlamp-k8s.github.io/headlamp/ +helm repo add headlamp https://kubernetes-sigs.github.io/headlamp/ helm repo update # Install Headlamp