Skip to content

Commit

Permalink
Merge pull request #8 from miklezzzz/fix-tiller-namespace
Browse files Browse the repository at this point in the history
Updates tiller-namespace flag and README.md
  • Loading branch information
maorfr authored Jul 15, 2019
2 parents 5a2902e + f67f065 commit 0d92133
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ for that.
```
$ cd $GOPATH/src/github.com/maorfr/helm-backup
$ make bootstrap build
$ SKIP_BIN_INSTALL=1 helm plugin install $GOPATH/src/github.com/maorfr/helm-backup
$ HELM_PUSH_PLUGIN_NO_INSTALL_HOOK=1 helm plugin install $GOPATH/src/github.com/maorfr/helm-backup
```

That last command will skip fetching the binary install and use the one you
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func main() {
}

f := cmd.Flags()
f.StringVar(&tillerNamespace, "tiller-namespace", "kube-system", "namespace of Tiller")
f.StringVarP(&tillerNamespace, "tiller-ns","t", "kube-system", "namespace of Tiller")
f.StringVarP(&label, "label", "l", "OWNER=TILLER", "label to select tiller resources by")
f.StringVar(&file, "file", "", "file name to use (.tgz file). If not provided - will use <namespace>.tgz")
f.BoolVarP(&restore, "restore", "r", false, "restore instead of backup")
Expand Down

0 comments on commit 0d92133

Please sign in to comment.