Skip to content

Commit

Permalink
Docs: Update prometheus and grafana chart (#1829) (#1850)
Browse files Browse the repository at this point in the history
Co-authored-by: Mark Mandel <markmandel@google.com>
  • Loading branch information
8398a7 and markmandel committed Oct 20, 2020
1 parent 926e277 commit 58472aa
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions site/content/en/docs/Guides/metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,10 @@ Prometheus is an open source monitoring solution, we will use it to store Agones
Let's install Prometheus using the [helm stable](https://github.com/helm/charts/tree/master/stable/prometheus) repository.

```bash
helm upgrade --install --wait prom stable/prometheus --namespace metrics \
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update
helm upgrade --install --wait prom prometheus-community/prometheus --version 11.16.2 --namespace metrics \
--set server.global.scrape_interval=30s \
--set server.persistentVolume.enabled=true \
--set server.persistentVolume.size=64Gi \
Expand Down Expand Up @@ -191,7 +194,10 @@ kubectl apply -f ./build/grafana/
Now we can install [grafana chart](https://github.com/helm/charts/tree/master/stable/grafana) from stable repository. (Replace `<your-admin-password>` with the admin password of your choice)

```bash
helm install --wait --name grafana stable/grafana --version=5.0.13 --namespace metrics \
helm repo add grafana https://grafana.github.io/helm-charts
helm repo update

helm upgrade --install --wait grafana grafana/grafana --version=5.7.10 --namespace metrics \
--set adminPassword=<your-admin-password> -f ./build/grafana.yaml
```

Expand Down

0 comments on commit 58472aa

Please sign in to comment.