diff --git a/build/Makefile b/build/Makefile index 55130749e9..f5ab2c49b2 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 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 diff --git a/site/content/en/docs/Guides/metrics.md b/site/content/en/docs/Guides/metrics.md index a860bf3fc0..3c21352d8b 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-community 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 ```