From 8f20e45c7760024b39fdb751292e3507419306e6 Mon Sep 17 00:00:00 2001 From: Michel Hollands Date: Tue, 23 Apr 2024 09:25:03 +0100 Subject: [PATCH 1/2] Update installation instructions Signed-off-by: Michel Hollands --- docs/installation.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 2352951..bbfab47 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -27,16 +27,23 @@ 1. Create a values.yaml file based on the [default one](../charts/meta-monitoring/values.yaml). Fill in the names of the secrets created above as needed. +1. Add the repo + + ``` + helm repo add grafana https://grafana.github.io/helm-charts + ``` + + 1. Install this helm chart ``` - helm install -n meta -f values.yaml meta ./charts/meta-monitoring + helm install -n meta -f values.yaml meta grafana/meta-monitoring ``` 1. Upgrade ``` - helm upgrade --install -f values.yaml -n meta meta ./charts/meta-monitoring + helm upgrade --install -f values.yaml -n meta meta grafana/meta-monitoring ``` 1. Delete this chart: From 5498b27ad69f829c135b6ebb246d63e95f4c1ffe Mon Sep 17 00:00:00 2001 From: Michel Hollands Date: Tue, 23 Apr 2024 11:12:00 +0100 Subject: [PATCH 2/2] Add repo update step Signed-off-by: Michel Hollands --- docs/installation.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/installation.md b/docs/installation.md index bbfab47..769b4fb 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -33,6 +33,12 @@ helm repo add grafana https://grafana.github.io/helm-charts ``` +1. Fetch the latest charts from the grafana repo + + ``` + helm repo update grafana + ``` + 1. Install this helm chart