From 84fb749aa2521544bb79e77cacb3346cfed32ecb Mon Sep 17 00:00:00 2001 From: souben Date: Mon, 23 Feb 2026 00:02:13 -0600 Subject: [PATCH 1/4] Update metrics documentation to reference new Grafana Helm chart --- site/content/en/docs/Guides/metrics.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/site/content/en/docs/Guides/metrics.md b/site/content/en/docs/Guides/metrics.md index a860bf3fc0..2f6308f785 100644 --- a/site/content/en/docs/Guides/metrics.md +++ b/site/content/en/docs/Guides/metrics.md @@ -192,14 +192,13 @@ kubectl apply -f ./build/grafana/ ``` Now we can install the -[Grafana Community Kubernetes Helm Charts](https://grafana.github.io/helm-charts/) from -their repository. (Replace `` with the admin password of your choice) +[Grafana Community Kubernetes Helm Charts](https://grafana-community.github.io/helm-charts) from their repository. (Replace `` with the admin password of your choice) ```bash -helm repo add grafana https://grafana.github.io/helm-charts +helm repo add grafana https://grafana-community.github.io/helm-charts helm repo update -helm upgrade --install --wait grafana grafana/grafana --namespace metrics \ +helm upgrade --install --wait grafana grafana-community/grafana --namespace metrics \ --set adminPassword= -f ./build/grafana.yaml ``` From 7579129ae323c70db03772a808713595a6a03a01 Mon Sep 17 00:00:00 2001 From: souben Date: Mon, 23 Feb 2026 00:05:28 -0600 Subject: [PATCH 2/4] Update Makefile to use new Grafana Helm chart --- build/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Makefile b/build/Makefile index 20c26e8ca9..055e73b627 100644 --- a/build/Makefile +++ b/build/Makefile @@ -917,10 +917,10 @@ setup-grafana: PVC ?= true setup-grafana: PV_SIZE ?= 64Gi setup-grafana: PASSWORD ?= admin setup-grafana: - $(DOCKER_RUN) helm repo add grafana https://grafana.github.io/helm-charts + $(DOCKER_RUN) helm repo add grafana-community https://grafana-community.github.io/helm-charts $(DOCKER_RUN) helm repo update $(DOCKER_RUN) kubectl apply -f $(mount_path)/build/grafana/ - $(DOCKER_RUN) helm upgrade grafana grafana/grafana --install --wait \ + $(DOCKER_RUN) helm upgrade grafana grafana-community/grafana --install --wait \ --namespace metrics --create-namespace \ --set persistence.enabled=$(PVC),server.persistentVolume.size=$(PV_SIZE) \ --set adminPassword=$(PASSWORD) $(HELM_ARGS) -f $(mount_path)/build/grafana.yaml From 8dd648166f240e747e02d4a547b8e13e02fcd1e8 Mon Sep 17 00:00:00 2001 From: souben Date: Tue, 24 Feb 2026 21:04:43 -0600 Subject: [PATCH 3/4] Update documentation to reference the new Grafana Helm chart --- build/docs/make-reference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/docs/make-reference.md b/build/docs/make-reference.md index d9d4458e8b..4cc6f7f3ef 100644 --- a/build/docs/make-reference.md +++ b/build/docs/make-reference.md @@ -193,7 +193,7 @@ Run helm repo update to get the mose recent charts. #### `make setup-grafana` -Install Grafana server using [grafana community](https://grafana.github.io/helm-charts) chart into +Install Grafana server using [grafana community](https://grafana-community.github.io/helm-charts) chart into the current cluster and setup [Agones dashboards with Prometheus datasource](./grafana/). You can set your own password using the `PASSWORD` environment variable. @@ -483,4 +483,4 @@ port forwarding to the controller deployment. - See [Building and Testing Guide](building-testing.md) for basic build workflows - See [Cluster Setup Guide](cluster-setup.md) for setting up clusters to use these targets -- See [Development Workflow Guide](development-workflow.md) for advanced development patterns \ No newline at end of file +- See [Development Workflow Guide](development-workflow.md) for advanced development patterns From bd33105f3262b81709d36e58949937dc4f9790dc Mon Sep 17 00:00:00 2001 From: Soufiane Ben <33076481+souben@users.noreply.github.com> Date: Thu, 26 Feb 2026 22:18:18 -0600 Subject: [PATCH 4/4] Update site/content/en/docs/Guides/metrics.md Co-authored-by: Mike Seese --- site/content/en/docs/Guides/metrics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/en/docs/Guides/metrics.md b/site/content/en/docs/Guides/metrics.md index 2f6308f785..3c21352d8b 100644 --- a/site/content/en/docs/Guides/metrics.md +++ b/site/content/en/docs/Guides/metrics.md @@ -195,7 +195,7 @@ Now we can install the [Grafana Community Kubernetes Helm Charts](https://grafana-community.github.io/helm-charts) from their repository. (Replace `` with the admin password of your choice) ```bash -helm repo add grafana https://grafana-community.github.io/helm-charts +helm repo add grafana-community https://grafana-community.github.io/helm-charts helm repo update helm upgrade --install --wait grafana grafana-community/grafana --namespace metrics \