1 Star 0 Fork 0

chaos/truenas-charts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
helm_template_common.sh 788 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
chart_path=library/common-test
if [ ! $1 == "template" ]; then
if [ $1 == "-f" ] && [ ! -z $2 ]; then
extra_args=("-f" "$chart_path/ci/$2")
fi
fi
function cleanup {
if [ -d "$chart_path/charts" ]; then
echo "🧹 Cleaning up charts..."
rm -r "$chart_path/charts"
rm "$chart_path/Chart.lock"
fi
}
cleanup
echo "Building common..."
helm dependency update "$chart_path"
if [ $1 == "template" ]; then
echo "🧪 Running <helm template ./$chart_path"
helm template -f "$chart_path/default-values.yaml" "./$chart_path" --debug
else
echo "🏁 Running <helm install --dry-run --debug common-test ${extra_args[@]} ./$chart_path"
helm install --dry-run --debug common-test "${extra_args[@]}" "./$chart_path"
fi
helm lint "./$chart_path"
cleanup
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chaosye/truenas-charts.git
git@gitee.com:chaosye/truenas-charts.git
chaosye
truenas-charts
truenas-charts
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385