From ab42a96949af5be56208e602ea936ad6bc25c43b Mon Sep 17 00:00:00 2001 From: Michel Hollands Date: Mon, 6 May 2024 16:29:33 +0100 Subject: [PATCH] Update installation instructions Signed-off-by: Michel Hollands --- charts/meta-monitoring/values.yaml | 2 +- docs/installation.md | 14 +++++++++++--- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/charts/meta-monitoring/values.yaml b/charts/meta-monitoring/values.yaml index 7e44b62..2c8065c 100644 --- a/charts/meta-monitoring/values.yaml +++ b/charts/meta-monitoring/values.yaml @@ -386,7 +386,7 @@ tempo-distributed: enabled: true minio: - existingSecret: "mmc-minio" + existingSecret: "minio" buckets: - name: loki-chunks policy: none diff --git a/docs/installation.md b/docs/installation.md index e827d5c..0c53f40 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -25,17 +25,17 @@ ``` kubectl create secret generic logs -n meta \ --from-literal=username= \ - --from-literal=password= + --from-literal=password= \ --from-literal=endpoint='https://logs-prod-us-central1.grafana.net/loki/api/v1/push' kubectl create secret generic metrics -n meta \ --from-literal=username= \ - --from-literal=password= + --from-literal=password= \ --from-literal=endpoint='https://prometheus-us-central1.grafana.net/api/prom/push' kubectl create secret generic traces -n meta \ --from-literal=username= \ - --from-literal=password= + --from-literal=password= \ --from-literal=endpoint='https://otlp-gateway-prod-us-east-0.grafana.net/otlp' ``` @@ -67,6 +67,14 @@ kubectl create namespace meta ``` +1. Create a secret with the user and password for the local Minio: + + ``` + kubectl create secret generic minio -n meta \ + --from-literal=rootPassword= \ + --from-literal=rootUser= + ``` + 1. Create a values.yaml file based on the [default one](../charts/meta-monitoring/values.yaml). An example minimal values.yaml looks like this: ```