Skip to content

Commit

Permalink
Merge pull request #430 from pmichna/patch-1
Browse files Browse the repository at this point in the history
Use --upgrade instead of --force-upgrade with helm init
  • Loading branch information
luisdavim authored Apr 6, 2020
2 parents 969a7f5 + 353510e commit 4531003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helm_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ func deployTiller(namespace string, serviceAccount string, defaultServiceAccount
}
cmd := command{
Cmd: "helm",
Args: concat([]string{"init", "--force-upgrade"}, maxHistory, sa, tillerNameSpace, tls, storageBackend),
Args: concat([]string{"init", "--upgrade", "--force-upgrade", "--wait"}, maxHistory, sa, tillerNameSpace, tls, storageBackend),
Description: "initializing helm on the current context and upgrading Tiller on namespace [ " + namespace + " ].",
}

Expand Down

0 comments on commit 4531003

Please sign in to comment.