
This adds example configurations in the gate to leverage LDAP auth for Grafana dashboard. This patch also fixes up minor indentation errors in YAML. Signed-off-by: Tin Lam <tin@irrational.io> Change-Id: I0961ced71b8a4d1c4f639fd898bc70761f8de995
20 lines
336 B
Bash
Executable File
20 lines
336 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
cd ./charts/loki
|
|
helm dep up
|
|
cd -
|
|
|
|
# shellcheck disable=SC2046
|
|
helm upgrade \
|
|
--create-namespace \
|
|
--install \
|
|
--namespace=loki \
|
|
loki \
|
|
./charts/loki \
|
|
$(./tools/deployment/common/get-values-overrides.sh loki)
|
|
|
|
./tools/deployment/common/wait-for-pods.sh loki
|
|
|
|
helm -n loki test loki --logs
|