Skip to content
This repository has been archived by the owner on Jan 22, 2021. It is now read-only.

Commit

Permalink
Merge pull request #65 from rimusz/v0.9.1
Browse files Browse the repository at this point in the history
v0.9.1
  • Loading branch information
rimusz authored Oct 24, 2019
2 parents b95a97d + 9c2eab0 commit 620987c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: "tiller"
version: "0.9.0"
version: "0.9.1"
usage: "Please see /~https://github.com/rimusz/helm-tiller for usage"
description: "Start a Tiller server locally, aka Tillerless Helm"
command: "$HELM_PLUGIN_DIR/scripts/tiller.sh"
Expand Down
12 changes: 9 additions & 3 deletions scripts/tiller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,10 @@ run_tiller() {
stop_tiller() {
if [[ "${HELM_TILLER_SILENT}" == "false" ]]; then
echo "Stopping Tiller..."
pkill -9 -f ./bin/tiller
else
pkill -9 -f ./bin/tiller &> /dev/null
fi
pkill -9 -f ./bin/tiller
}
COMMAND=$1
Expand Down Expand Up @@ -208,8 +210,12 @@ start)
start-ci)
check_helm
check_install_tiller
echo "Set the following vars to use tiller:"
helm_env "$@"
if [[ "${HELM_TILLER_SILENT}" == "false" ]]; then
echo "Set the following vars to use tiller:"
helm_env "$@"
else
helm_env "$@" &> /dev/null
fi
start_tiller
;;
env)
Expand Down

0 comments on commit 620987c

Please sign in to comment.