Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -916,10 +916,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
Expand Down
2 changes: 1 addition & 1 deletion build/docs/make-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions site/content/en/docs/Guides/metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,14 +191,14 @@ kubectl apply -f ./build/grafana/
```

Now we can install the
[Grafana Community Kubernetes Helm Charts](https://grafana.github.io/helm-charts/) from
[Grafana Community Kubernetes Helm Charts](https://grafana-community.github.io/helm-charts/) from
their repository. (Replace `<your-admin-password>` 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=<your-admin-password> -f ./build/grafana.yaml
```

Expand Down
Loading