
This patch addresses a few issues with the Makefile - removes redundant directory checks; - removes requirements.yaml check as helm3 moved that into Charts.yaml; - fixes so "helm dep up" would work; - removes loki and harbor from exclusion as they are now actual charts; - updates the script to use the makefile. Signed-off-by: Tin Lam <tin@irrational.io> Change-Id: Ie6133bce4a45dd085569c51abc4c4c3c52b14378
18 lines
324 B
Bash
Executable File
18 lines
324 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
make -C ./charts loki
|
|
|
|
# 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
|