From b2466f80ab6b6586ad6f634b69b263d305937ce5 Mon Sep 17 00:00:00 2001 From: Janis Date: Tue, 12 May 2026 18:10:30 +0200 Subject: [PATCH] chore: Added metrics deploy script --- metrics-deployment-values.sh | 126 +++++++++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100755 metrics-deployment-values.sh diff --git a/metrics-deployment-values.sh b/metrics-deployment-values.sh new file mode 100755 index 0000000..20d08ff --- /dev/null +++ b/metrics-deployment-values.sh @@ -0,0 +1,126 @@ +#!/usr/bin/env bash +set -euo pipefail + +read -rsp "Grafana Cloud API token: " GF_TOKEN +echo + +helm repo add grafana https://grafana.github.io/helm-charts && + helm repo update && + helm upgrade --install --rollback-on-failure --timeout 300s grafana-k8s-monitoring grafana/k8s-monitoring \ + --version "^4" --namespace "monitoring" --create-namespace --values - <