Skip to content

Commit aa872b7

Browse files
committed
docs: backend/helm: charts: Fix repo link
The repo moved to kubernetes sig, and the website does not redirect. Signed-off-by: René Dudfield <[email protected]>
1 parent 518c738 commit aa872b7

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

backend/pkg/helm/charts_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func TestListChart(t *testing.T) {
2424
helmHandler, err := helm.NewHandlerWithSettings(k8sclient, cache, "default", settings)
2525
require.NoError(t, err)
2626

27-
testAddRepo(t, helmHandler, "headlamp_test_repo", "https://headlamp-k8s.github.io/headlamp/")
27+
testAddRepo(t, helmHandler, "headlamp_test_repo", "https://kubernetes-sigs.github.io/headlamp/")
2828

2929
// list chart request
3030
listChartsRequest, err := http.NewRequestWithContext(context.Background(),

backend/pkg/helm/release_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ func TestInstallRelease(t *testing.T) {
9696
helmHandler := newHelmHandler(t)
9797

9898
// add headlmap repo
99-
testAddRepo(t, helmHandler, "headlamp_test_repo", "https://headlamp-k8s.github.io/headlamp/")
99+
testAddRepo(t, helmHandler, "headlamp_test_repo", "https://kubernetes-sigs.github.io/headlamp/")
100100

101101
// uninstall release if it already exists
102102
listClient := action.NewList(helmHandler.Configuration)

backend/pkg/helm/repository_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ func testAddRepo(t *testing.T, helmHandler *helm.Handler, repoName, repoURL stri
6464
// add headlmap repo
6565
addRepo := helm.AddUpdateRepoRequest{
6666
Name: "headlamp_test_repo",
67-
URL: "https://headlamp-k8s.github.io/headlamp/",
67+
URL: "https://kubernetes-sigs.github.io/headlamp/",
6868
}
6969

7070
addRepoRequestJSON, err := json.Marshal(addRepo)
@@ -89,7 +89,7 @@ func TestAddRepository(t *testing.T) {
8989
helmHandler := newHelmHandler(t)
9090

9191
t.Run("add_repo_success", func(t *testing.T) {
92-
testAddRepo(t, helmHandler, "headlamp_test_repo", "https://headlamp-k8s.github.io/headlamp/")
92+
testAddRepo(t, helmHandler, "headlamp_test_repo", "https://kubernetes-sigs.github.io/headlamp/")
9393
})
9494

9595
t.Run("invalid_add_repo_request", func(t *testing.T) {
@@ -111,7 +111,7 @@ func TestRemoveRepository(t *testing.T) {
111111
helmHandler := newHelmHandler(t)
112112

113113
t.Run("remove_repo_success", func(t *testing.T) {
114-
testAddRepo(t, helmHandler, "headlamp_test_repo", "https://headlamp-k8s.github.io/headlamp/")
114+
testAddRepo(t, helmHandler, "headlamp_test_repo", "https://kubernetes-sigs.github.io/headlamp/")
115115

116116
// remove repository
117117
removeRepoRequest, err := http.NewRequestWithContext(context.Background(), "DELETE",
@@ -131,7 +131,7 @@ func TestUpdateRepo(t *testing.T) {
131131
helmHandler := newHelmHandler(t)
132132

133133
t.Run("update_repo_success", func(t *testing.T) {
134-
testAddRepo(t, helmHandler, "headlamp_test_repo", "https://headlamp-k8s.github.io/headlamp/")
134+
testAddRepo(t, helmHandler, "headlamp_test_repo", "https://kubernetes-sigs.github.io/headlamp/")
135135

136136
// update repository request
137137
updateRepo := helm.AddUpdateRepoRequest{
@@ -194,7 +194,7 @@ func TestUpdateRepo(t *testing.T) {
194194
func TestListRepositories(t *testing.T) {
195195
helmHandler := newHelmHandler(t)
196196

197-
testAddRepo(t, helmHandler, "headlamp_test_repo", "https://headlamp-k8s.github.io/headlamp/")
197+
testAddRepo(t, helmHandler, "headlamp_test_repo", "https://kubernetes-sigs.github.io/headlamp/")
198198

199199
// list repositories
200200
listRepoReq, err := http.NewRequestWithContext(context.Background(),

charts/headlamp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Headlamp is an easy-to-use and extensible Kubernetes web UI that provides:
1717
Add the Headlamp repository and install the chart:
1818

1919
```console
20-
$ helm repo add headlamp https://headlamp-k8s.github.io/headlamp/
20+
$ helm repo add headlamp https://kubernetes-sigs.github.io/headlamp/
2121
$ helm repo update
2222
$ helm install my-headlamp headlamp/headlamp --namespace kube-system
2323
```

docs/installation/in-cluster/dex/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ Replace `<YOUR-CLIENT-ID>`,`<YOUR-CLIENT-SECRET>`,`<YOUR-DEX-URL>` with your spe
168168
3. Save the `values.yaml` file and Install Headlamp using helm with the following commands:
169169

170170
```shell
171-
helm repo add headlamp https://headlamp-k8s.github.io/headlamp/
171+
helm repo add headlamp https://kubernetes-sigs.github.io/headlamp/
172172
helm install headlamp-oidc headlamp/headlamp -f values.yaml --namespace=headlamp --create-namespace
173173
```
174174

docs/installation/in-cluster/eks/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Replace `<YOUR-CLIENT-ID>`,`<YOUR-CLIENT-SECRET>`,`<YOUR_REGION_HERE`, `<USER_PO
140140
6. Save the `values.yaml` file and Install Headlamp using helm with the following commands:
141141

142142
```shell
143-
helm repo add headlamp https://headlamp-k8s.github.io/headlamp/
143+
helm repo add headlamp https://kubernetes-sigs.github.io/headlamp/
144144
helm install headlamp-oidc headlamp/headlamp -f values.yaml --namespace=headlamp --create-namespace
145145
```
146146

docs/installation/in-cluster/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use [helm](https://helm.sh/docs/intro/quickstart/) with our [helm chart](https:/
1313

1414
```bash
1515
# first add our custom repo to your local helm repositories
16-
helm repo add headlamp https://headlamp-k8s.github.io/headlamp/
16+
helm repo add headlamp https://kubernetes-sigs.github.io/headlamp/
1717

1818
# now you should be able to install headlamp via helm
1919
helm install my-headlamp headlamp/headlamp --namespace kube-system

docs/installation/in-cluster/keycloak/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ Replace `<YOUR-CLIENT-ID>`, `<YOUR-CLIENT-SECRET>`, `<YOUR-KEYCLOAK-URL>`, and `
157157
3. Save the `values.yaml` file and Install Headlamp using helm with the following commands:
158158

159159
```shell
160-
helm repo add headlamp https://headlamp-k8s.github.io/headlamp/
160+
helm repo add headlamp https://kubernetes-sigs.github.io/headlamp/
161161
helm install headlamp-oidc headlamp/headlamp -f values.yaml --namespace=headlamp --create-namespace
162162
```
163163

0 commit comments

Comments
 (0)