Skip to content

Commit

Permalink
build: force tiller upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
rokroskar committed Oct 30, 2019
1 parent 20db63f commit fa745d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion scripts/travis-before-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ for release in $(helm list --all -q | grep renku); do
helm delete --purge $release
done

helm init --wait
helm init --wait --upgrade
kubectl version
helm version
helm upgrade --install nginx-ingress --namespace kube-system \
--set controller.service.type=NodePort \
--set controller.service.nodePorts.http=32080 \
Expand Down
4 changes: 2 additions & 2 deletions scripts/travis-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ set -ex
sudo apt-get update && sudo apt-get install -y graphviz

# install kubectl
curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/v1.10.0/bin/linux/amd64/kubectl
curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/v1.15.0/bin/linux/amd64/kubectl
chmod +x kubectl
sudo mv kubectl /usr/local/bin/
# install helm
curl -Lo helm.tar.gz https://storage.googleapis.com/kubernetes-helm/helm-v2.12.3-linux-amd64.tar.gz
curl -Lo helm.tar.gz https://storage.googleapis.com/kubernetes-helm/helm-v2.14.3-linux-amd64.tar.gz
tar xvf helm.tar.gz
chmod +x linux-amd64/helm
sudo mv linux-amd64/helm /usr/local/bin/
Expand Down

0 comments on commit fa745d8

Please sign in to comment.