Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
13304e16
Commit
13304e16
authored
Jan 25, 2017
by
Matt Butcher
Committed by
GitHub
Jan 25, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1861 from technosophos/docs/1704-upgrading-tiller
docs(install): document new upgrade process
parents
4a69e0c7
70f4f702
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
7 deletions
+19
-7
install.md
docs/install.md
+17
-7
quickstart.md
docs/quickstart.md
+2
-0
No files found.
docs/install.md
View file @
13304e16
...
...
@@ -169,15 +169,12 @@ Server: &version.Version{SemVer:"v2.0.0-alpha.4", GitCommit:"a5...", GitTreeStat
Importantly, even when running locally, Tiller will store release
configuration in ConfigMaps inside of Kubernetes.
##
Deleting or Reinstall
ing Tiller
##
Upgrad
ing Tiller
Because Tiller stores its data in Kubernetes ConfigMaps, you can safely
delete and re-install Tiller without worrying about losing any data. The
recommended way of deleting Tiller is with
`kubectl delete deployment
tiller-deploy --namespace kube-system`
As of Helm 2.2.0, Tiller can be upgraded using
`helm init --upgrade`
.
To simply update Tiller to run the latest image, you can run this
command
:
For older versions of Helm, or for manual upgrades, you can use
`kubectl`
to modify
the Tiller image
:
```
console
$
export
TILLER_TAG
=
v2.0.0-beta.1
# Or whatever version you want
...
...
@@ -187,6 +184,19 @@ deployment "tiller-deploy" image updated
Setting
`TILLER_TAG=canary`
will get the latest snapshot of master.
## Deleting or Reinstalling Tiller
Because Tiller stores its data in Kubernetes ConfigMaps, you can safely
delete and re-install Tiller without worrying about losing any data. The
recommended way of deleting Tiller is with
`kubectl delete deployment
tiller-deploy --namespace kube-system`
Tiller can then be re-installed from the client with:
```
console
$
helm init
```
## Conclusion
In most cases, installation is as simple as getting a pre-built
`helm`
binary
...
...
docs/quickstart.md
View file @
13304e16
...
...
@@ -43,6 +43,8 @@ This will install Tiller into the Kubernetes cluster you saw with
**TIP:**
Want to install into a different cluster? Use the
`--kube-context`
flag.
**TIP:**
When you want to upgrade Tiller, just run
`helm init --upgrade`
.
## Install an Example Chart
To install a chart, you can run the
`helm install`
command. Helm has
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment