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
5b116247
Commit
5b116247
authored
Jan 20, 2017
by
Taylor Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds documentation for `--wait` and other new command line flags
parent
7ef9bb6f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletion
+20
-1
using_helm.md
docs/using_helm.md
+20
-1
No files found.
docs/using_helm.md
View file @
5b116247
...
...
@@ -224,7 +224,8 @@ the rest of the defaults for that chart.
There are two ways to pass configuration data during install:
-
`--values`
(or
`-f`
): Specify a YAML file with overrides.
-
`--values`
(or
`-f`
): Specify a YAML file with overrides. This can be specified multiple times
and the rightmost file will take precedence
-
`--set`
: Specify overrides on the command line.
If both are used,
`--set`
values are merged into
`--values`
with higher precedence.
...
...
@@ -334,6 +335,24 @@ A release version is an incremental revision. Every time an install,
upgrade, or rollback happens, the revision number is incremented by 1.
The first revision number is always 1.
## Helpful Options for Install/Upgrade/Rollback
There are several other helpful options you can specify for customizing the
behavior of Helm during an install/upgrade/rollback. Please note that this
is not a full list of cli flags. To see a description of all flags, just run
`helm <command> --help`
.
-
`--timeout`
: A value in seconds to wait for Kubernetes commands to complete
This defaults to 300 (5 minutes)
-
`--wait`
: Waits until all Pods are in a ready state, PVCs are bound, and
Services have and IP address (and Ingress if a
`LoadBalancer`
) before
marking the release as successful. It will wait for as long as the
`--timeout`
value. If timeout is reached, the release will be marked as
`FAILED`
.
-
`--no-hooks`
: This skips running hooks for the command
-
`--recreate-pods`
(only available for
`upgrade`
and
`rollback`
): This flag
will cause all pods to be recreated (with the exception of pods belonging to
deployments)
## 'helm delete': Deleting a Release
When it is time to uninstall or delete a release from the cluster, use
...
...
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