当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
加入 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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化