1 Star 1 Fork 2

曾经蜡笔没有小新/k8s-prometheus-grafana

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.sh 743 Bytes
一键复制 编辑 原始数据 按行查看 历史
root 提交于 2019-10-14 18:44 . first commit
#!/usr/bin/env bash
set -e
# only exit with zero if all commands of the pipeline exit successfully
set -o pipefail
for i in examples/jsonnet-snippets/*.jsonnet; do
[ -f "$i" ] || break
echo "Testing: ${i}"
echo ""
fileContent=$(<"$i")
snippet="local kp = $fileContent;
$(<examples/jsonnet-build-snippet/build-snippet.jsonnet)"
echo "${snippet}" > "test.jsonnet"
echo "\`\`\`"
echo "${snippet}"
echo "\`\`\`"
echo ""
jsonnet -J vendor "test.jsonnet" > /dev/null
rm -rf "test.jsonnet"
done
for i in examples/*.jsonnet; do
[ -f "$i" ] || break
echo "Testing: ${i}"
echo ""
echo "\`\`\`"
cat "${i}"
echo "\`\`\`"
echo ""
jsonnet -J vendor "${i}" > /dev/null
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Docker
1
https://gitee.com/znblog/k8s-prometheus-grafana.git
git@gitee.com:znblog/k8s-prometheus-grafana.git
znblog
k8s-prometheus-grafana
k8s-prometheus-grafana
master

搜索帮助