Skip saving helm to temp file

install helm directly from the script
instead of storing it in a temp file
and then executing it.

Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
Madhu Rajanna 2020-04-24 14:00:56 +05:30 committed by mergify[bot]
parent 99dabca319
commit d1e7d1eab3

View File

@ -96,10 +96,7 @@ if [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
mkdir -p tmp mkdir -p tmp
pushd tmp >/dev/null pushd tmp >/dev/null
build_step "installing helm" curl -L https://git.io/get_helm.sh | bash
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get >get_helm.sh
chmod 700 get_helm.sh
./get_helm.sh
build_step "cloning ceph/csi-charts repository" build_step "cloning ceph/csi-charts repository"
git clone https://github.com/ceph/csi-charts git clone https://github.com/ceph/csi-charts