Commit 115197a7 authored by Hordur Freyr Yngvason's avatar Hordur Freyr Yngvason
Browse files

Merge branch 'patch-1' into 'master'

fix: Respect chart lockfile when present

Closes #60 and #117

See merge request gitlab-org/cluster-integration/auto-deploy-image!118
parents 2af3cf60 9b9c29b1
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -59,8 +59,12 @@ function download_chart() {
    cp -R "$ASSETS_CHART_DIR" chart
  fi

  helm dependency update chart/
  if [[ -f chart/requirements.lock ]]; then
    helm dependency build chart/
  else
    helm dependency update chart/
  fi

}

function add_chart_repository() {