21 lines
802 B
Bash
Executable File
21 lines
802 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
which jsonnet > /dev/null || { echo "Required jsonnet not found!"; exit 1;}
|
|
which jb > /dev/null || { echo "Required jb ( json-bundler ) not found!"; exit 1;}
|
|
|
|
# wget https://github.com/jsonnet-bundler/jsonnet-bundler/releases/download/v0.4.0/jb-linux-amd64
|
|
|
|
[ -r jsonnetfile.json ] || jb init
|
|
if [ -r jsonnetfile.lock.json ]; then
|
|
jb update
|
|
else
|
|
#jb install github.com/prometheus-operator/kube-prometheus/jsonnet/kube-prometheus@main
|
|
jb install github.com/prometheus-operator/kube-prometheus/jsonnet/kube-prometheus@release-0.10
|
|
fi
|
|
|
|
make clean
|
|
jsonnet -J vendor -m dashboards -e '(import "dashboards.libsonnet").grafanaDashboards'
|
|
|
|
#jsonnet -J vendor -m rules rules.libsonnet | xargs -I{} sh -c 'cat {} | gojsontoyaml > {}.yaml' -- {}
|
|
jsonnet -J vendor -m rules rules.libsonnet
|