Skip to content

Commit cea26e1

Browse files
committed
scripts, configs: move logging stuff out of src/warnet
1 parent bd86de0 commit cea26e1

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
#!/bin/bash
22
set -e
33

4-
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
5-
64
helm repo add grafana https://grafana.github.io/helm-charts
75
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
86
helm repo update
97

10-
helm upgrade --install --namespace warnet-logging --create-namespace --values "${SCRIPT_DIR}/loki/values.yaml" loki grafana/loki --version 5.47.2
8+
helm upgrade --install --namespace warnet-logging --create-namespace --values "$PWD/configs/loki_values.yaml" loki grafana/loki --version 5.47.2
119
helm upgrade --install --namespace warnet-logging promtail grafana/promtail
1210
helm upgrade --install --namespace warnet-logging prometheus prometheus-community/kube-prometheus-stack --namespace warnet-logging --set grafana.enabled=false
13-
helm upgrade --install --namespace warnet-logging loki-grafana grafana/grafana --values "${SCRIPT_DIR}/grafana/values.yaml"
11+
helm upgrade --install --namespace warnet-logging loki-grafana grafana/grafana --values "$PWD/configs/grafana_values.yaml"

0 commit comments

Comments
 (0)