Commit b6146a18 by tingweiwang

Update start.sh

1 parent df3cdcae
Showing with 5 additions and 1 deletions
...@@ -84,27 +84,30 @@ kpl_launcher ...@@ -84,27 +84,30 @@ kpl_launcher
echo "开始执行seetaas代码打包" echo "开始执行seetaas代码打包"
build_seetaas build_seetaas
echo "判断是否收集seetaas-deploy脚本" echo "判断是否收集seetaas-deploy脚本"
if [[ $seetaas_deploy_archive == "true" ]];then if [[ $seetaas_deploy_archive == "true" ]];then
seetaas_deploy seetaas_deploy
else else
echo "跳过seetaas-deploy任务" echo "跳过seetaas-deploy任务"
fi
echo "判断是否收集configmap-kpl" echo "判断是否收集configmap-kpl"
if [[ $configmap_kpl_archive == "true" ]];then if [[ $configmap_kpl_archive == "true" ]];then
configmap_kpl_archive configmap_kpl_archive
else else
echo "跳过收集configmap-kpl任务" echo "跳过收集configmap-kpl任务"
fi
echo "判断是否收集private images" echo "判断是否收集private images"
if [[ $private_images_archive == "true" ]];then if [[ $private_images_archive == "true" ]];then
private_img private_img
else else
echo "跳过收集private images任务" echo "跳过收集private images任务"
fi
echo "判断是否收集private debs" echo "判断是否收集private debs"
if [[ $private_apt_debs == "true" ]];then if [[ $private_apt_debs == "true" ]];then
private_debs private_debs
else else
echo "跳过收集private debs" echo "跳过收集private debs"
fi
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!