代码拉取完成,页面将自动刷新
#!/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
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。