Michelle Noorali
d46d63a8f7
feat(*): add helm test command mvp
...
* This is a simple mvp which processes a test definition with the
hook annotation for test when you run `helm test [release]`
* helm client cmd, proto def, tiller logic
8 years ago
Matt Butcher
8d75b0c0c0
Merge pull request #1813 from technosophos/feat/1661-history-description
...
feat(tiller): record a message for each lifecycle step
8 years ago
Matt Butcher
756cb970bd
feat(tiller): record a message for each lifecycle step
...
This adds a simple description for each lifecycle step on a release
object.
Closes #1661
8 years ago
Adam Reese
336dd77d6a
Merge pull request #1890 from adamreese/feat/print-tiller-version
...
feat(tiller): print tiller version on startup
8 years ago
Matt Butcher
54d884f107
Merge pull request #1888 from technosophos/docs/1880-resource-policy-keep
...
docs(chart_tips_and_tricks): explain resource-policy.
8 years ago
Matt Butcher
5061a46f34
Merge pull request #1889 from technosophos/docs/1885-cncf-cla
...
docs(CONTRIBUTING): switch to CNCF CLA
8 years ago
Adam Reese
d97f44e3a0
feat(tiller): print tiller version on startup
8 years ago
Matt Butcher
03035380fa
docs(CONTRIBUTING): switch to CNCF CLA
...
Change from old Google CLA verbage to new CNCF CLA verbage. This text is
verbatim with Kubernetes' repo.
Closes #1885
8 years ago
Matt Butcher
c5d0dc49c4
docs(chart_tips_and_tricks): explain resource-policy.
...
This adds a short explanation of the resource policy annotation.
Closes #1880
8 years ago
Taylor Thomas
d41f093331
Merge pull request #1850 from frodenas/deinit
...
feat(helm): Add command to uninstall Tiller
8 years ago
Ferran Rodenas
074d746c95
Add reset command to uninstall Tiller
8 years ago
Taylor Thomas
e440a36d95
Merge pull request #1820 from thomastaylor312/feat/add_wait
...
feat(*): Add --wait flag
8 years ago
Matt Butcher
40da879edc
Merge pull request #1872 from gosharplite/patch-10
...
docs(wrapping_up.md): fixed typo
8 years ago
Matt Butcher
cc3c79f228
Merge pull request #1871 from gosharplite/patch-9
...
docs(debugging.md): fixed typo
8 years ago
Matt Butcher
93ae9610b1
Merge pull request #1870 from gosharplite/patch-8
...
docs(subcharts_and_globals.md): fixed typo
8 years ago
Matt Butcher
1aafaf84fb
Merge pull request #1869 from gosharplite/patch-7
...
docs(accessing_files.md): fixed typo
8 years ago
Matt Butcher
0e07311dca
Merge pull request #1868 from gosharplite/patch-6
...
docs(control_structures.md): fixed typo
8 years ago
Adam Reese
83ef6391da
Merge pull request #1839 from ravishivt/issue/1804
...
Add linux/arm64 to cross-compile targets.
8 years ago
Matt Butcher
6ce099ba77
Merge pull request #1867 from gosharplite/patch-5
...
Fix typo
8 years ago
Matt Butcher
830566a0d8
Merge pull request #1866 from gosharplite/patch-4
...
Fix typo
8 years ago
Matt Butcher
325101307b
Merge pull request #1874 from mkumatag/fix_segv
...
Fix SIGSEGV fault
8 years ago
Matt Butcher
0ff55c9208
Merge pull request #1863 from technosophos/docs/1482-related-projects
...
docs(related): add related projects
8 years ago
Matt Butcher
13304e1637
Merge pull request #1861 from technosophos/docs/1704-upgrading-tiller
...
docs(install): document new upgrade process
8 years ago
Manjunath A Kumatagi
851ca79cc2
Fix SIGSEGV fault
8 years ago
Tony Hsu
19579c4ec7
Fix typo
8 years ago
Tony Hsu
74213a5593
Fix typo
8 years ago
Tony Hsu
95ee0bc748
Fix typo
8 years ago
Tony Hsu
70692ecbd4
Fix typo
8 years ago
Tony Hsu
2ce2d3deaa
Fix typo
8 years ago
Tony Hsu
c1cb2595a0
Fix typo
8 years ago
Tony Hsu
34a4850dde
Fix typo
8 years ago
Matt Butcher
9e6b135b5e
docs(related): add related projects
...
Closes #1482
8 years ago
Matt Butcher
70f4f702e3
docs(install): document new upgrade process
...
This documents the new 'helm init --upgrade' flag.
Closes #1704
Closes #1755
8 years ago
Matt Butcher
4a69e0c776
Merge pull request #1842 from bacongobbler/install-from-chart
...
add InstallReleaseFromChart and UpdateReleaseFromChart
8 years ago
Matt Butcher
830278b8ec
Merge pull request #1851 from frodenas/version-test
...
fix(helm): Fake tillerHost at version cmd tests
8 years ago
Matt Butcher
eb87b71180
Merge pull request #1853 from gosharplite/patch-1
...
Fix typo
8 years ago
Matt Butcher
152556f7e8
Merge pull request #1859 from gosharplite/patch-2
...
fix typo
8 years ago
Matt Butcher
9f05c8dcc1
Merge pull request #1860 from gosharplite/patch-3
...
Fix typo
8 years ago
Tony Hsu
0dfc699dca
Fix typo
8 years ago
Tony Hsu
d2a8d944fe
fix typo
8 years ago
Matthew Fisher
dad40fcbe0
add InstallReleaseFromChart and UpdateReleaseFromChart
...
When using pkg/helm as a third party client, I am using chartutil.LoadArchive()
to load a chart from an io.Reader. After that is loaded I wish to install/update that
chart, however InstallRelease and UpdateRelease only accepts a path rather than
something of type *chart.Chart. This adds a new function called InstallReleaseFromChart
which allows one to load a chart separate from the path, then install said chart.
8 years ago
Matt Butcher
dcae753a2e
Merge pull request #1843 from bacongobbler/doc-typo
...
fix doc typo in FAQ
8 years ago
Tony Hsu
829e663990
Fix typo
8 years ago
Ferran Rodenas
cc0f460033
Fake tillerHost at version cmd tests
...
Version cmd tries to set up a tunnel at RunE instead of using the
PersistentPreRunE. That means that for each version test (3) it
tries to set up the tunnel. When running the tests on an internetless
or whithout a valid k8s environment, the tunnel will fail with a
timeout of 20 seconds, meaning that it will take 60 seconds to
run the test.
This commit adds a fake tillerHost so it will not try to setup the
tunnel.
8 years ago
Taylor Thomas
5b116247b8
Adds documentation for `--wait` and other new command line flags
8 years ago
Matthew Fisher
a263cfb086
fix doc typo
8 years ago
Taylor Thomas
7ef9bb6f71
feat(*): Add --wait flag
...
Adds `--wait` flag to helm that waits for all pods to reach a ready
state, PVCs to be bound, and services to have IP addresses
Closes #1805
8 years ago
rmehra
0378b4a1af
Add linux/arm64 to cross-compile targets.
8 years ago
Adam Reese
7389b341c7
Merge pull request #1836 from adamreese/ref/kube-cleanup
...
ref(kube): misc code cleanup
8 years ago
Adam Reese
de64da2bb1
ref(kube): misc code cleanup
8 years ago