From a7fbae8183ec2c364ff20c3dbd1bd5174a74e181 Mon Sep 17 00:00:00 2001 From: Jason Plum Date: Wed, 16 Dec 2020 17:15:44 -0500 Subject: [PATCH] CI: remove auto-deploy-app inclusion --- scripts/ci/autodevops.sh | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/scripts/ci/autodevops.sh b/scripts/ci/autodevops.sh index 86134d98bb..351cf39465 100644 --- a/scripts/ci/autodevops.sh +++ b/scripts/ci/autodevops.sh @@ -223,24 +223,11 @@ function restart_task_runner() { } function download_chart() { - if [[ ! -d chart ]]; then - auto_chart=${AUTO_DEVOPS_CHART:-gitlab/auto-deploy-app} - auto_chart_name=$(basename $auto_chart) - auto_chart_name=${auto_chart_name%.tgz} - else - auto_chart="chart" - auto_chart_name="chart" - fi + mkdir -p chart/ helm init --client-only helm repo add gitlab https://charts.gitlab.io helm repo add jetstack https://charts.jetstack.io - if [[ ! -d "$auto_chart" ]]; then - helm fetch ${auto_chart} --untar - fi - if [ "$auto_chart_name" != "chart" ]; then - mv ${auto_chart_name} chart - fi helm dependency update chart/ helm dependency build chart/ -- GitLab