Skip to content

Commit

Permalink
update download URL
Browse files Browse the repository at this point in the history
  • Loading branch information
jcstanaway committed Aug 17, 2021
1 parent 0305b56 commit a10b387
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: "tiller"
version: "0.9.3"
usage: "Please see https://github.com/rimusz/helm-tiller for usage"
version: "0.10.0"
usage: "Please see https://github.com/jcstanaway/helm-tiller for usage"
description: "Start a Tiller server locally, aka Tillerless Helm"
command: "$HELM_PLUGIN_DIR/scripts/tiller.sh"
useTunnel: false
6 changes: 3 additions & 3 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ cd "$HELM_PLUGIN_DIR"
unameOut="$(uname -s)"

case "${unameOut}" in
Linux*) OS=Linux;;
Darwin*) OS=Darwin;;
Linux*) OS=linux;;
Darwin*) OS=darwin;;
*) OS="UNKNOWN:${unameOut}"
esac

Expand All @@ -26,7 +26,7 @@ os="$(echo "${OS}" | tr '[A-Z]' '[a-z]')"

if [[ ${COMPARE_VERSION} -ge 0 ]]; then
# Helm v2.11 and versions above
URL=https://storage.googleapis.com/kubernetes-helm/helm-v"${VERSION}"-"${os}"-amd64.tar.gz
URL=https://get.helm.sh/helm-v"${VERSION}"-"${os}"-amd64.tar.gz
else
# Helm v2.10 and versions below
URL=https://storage.googleapis.com/helm-tiller/tiller-v"${VERSION}"_"${OS}"_x86_64.tgz
Expand Down

0 comments on commit a10b387

Please sign in to comment.