Larry Rensing
294d18d567
Merge remote-tracking branch 'upstream/master' into feat/list-namespaces
8 years ago
Larry Rensing
8cb931925e
Merge remote-tracking branch 'upstream/master' into feat/list-namespaces
8 years ago
Matt Butcher
ed7bb41973
Merge pull request #1928 from vdice/add-last-test-suite-run-to-status
...
feat(cmd/helm/status): add last test suite run to status output
8 years ago
Adam Reese
da8d2f4c60
Merge pull request #1876 from mkumatag/cross_ppc64le
...
Add linux/ppc64le to build-cross target
8 years ago
Taylor Thomas
977ceb9b5f
Merge pull request #1882 from bacongobbler/1712-portforwarder
...
move newTillerPortForwarder to pkg/helm/portforwarder
8 years ago
Matt Butcher
67eb017bd0
Merge pull request #1913 from technosophos/fix/1864-delete-old-deps
...
fix(helm): delete outdated deps
8 years ago
Vaughn Dice
140caa081b
feat(cmd/helm/status): add last test suite run to status output
8 years ago
Michelle Noorali
c7e2d186a5
Merge pull request #1777 from michelleN/feat/1163-chart-testing
...
feat(*): add helm test initial framework
8 years ago
Taylor Thomas
bccf6f046c
Merge pull request #1926 from technosophos/fix/1925-broken-search-test
...
fix(helm): fix broken unit test
8 years ago
Matt Butcher
257f12095f
fix(helm): fix broken unit test
...
I recently added a test to check the sorting of search results.
Unfortunately, the test didn't actually sort the results (_sigh_), so
it was failing occasionally on map ordering.
This adds the sort function that is supposed to be tested.
Closes #1925
8 years ago
Matt Butcher
9abc419b0b
Merge pull request #1916 from iamzhout/master
...
docs(helm): add doc to use `helm reset` to delete tiller deployment
8 years ago
Larry Rensing
3a380923f4
feat(*): add --namespace flag to 'helm list'
...
Users can now specify a namespace filter for 'helm list'. Only the
releases within the specified namespace will be shown. For example,
'helm list --namespace foo' will only show releases for the 'foo'
namespace. Also added a namespace field to the table view.
Closes #1563
8 years ago
Michelle Noorali
4896ea7cf5
chore(pkg/tiller): add logs on RunReleaseTesting
8 years ago
Tao Zhou
f745c9c761
docs(using_helm): fix outdated `helm rollback` example usage in doc
...
Closes #1921
8 years ago
Tao Zhou
d19b6cdd66
docs(install): add doc to use `helm reset` to delete tiller deployment
8 years ago
Michelle Noorali
538e8297ef
ref(*): add namespace info to failing test msg
...
* also cleanup comments
8 years ago
Taylor Thomas
2c5e8d5bd4
Merge pull request #1914 from lachie83/bugfix-match-history-maxcolwidth
...
(bugfix/cmd/helm/history): update history table MaxColWidth
8 years ago
Lachlan Evenson
ff7d3394f6
(bugfix/cmd/helm/history): update history table MaxColWidth to match that of
...
list command
8 years ago
Adam Reese
377639c803
Merge pull request #1907 from adamreese/ref/proto-cleanup
...
ref(hapi): remove never used proto field
8 years ago
Matt Butcher
91da555c85
fix(helm): delete outdated deps
...
This fixes a bug in 'helm dep up' which left old versions of a
dependency after an update.
Closes #1864
8 years ago
Matt Butcher
e7fc7a4efa
Merge pull request #1849 from iamzhout/master
...
fix(helm) add missing manifest header for `helm init --dry-run --debug`
8 years ago
Adam Reese
fd210dfd30
ref(hapi): remove never used proto field
8 years ago
Matt Butcher
33ccd6b2c9
Merge pull request #1855 from technosophos/fix/1845-dep-up-failure
...
fix(helm): fix 'helm dep up' to fetch by URL
8 years ago
Matt Butcher
29358ef9ce
Merge pull request #1905 from technosophos/docs/1824-document-docker-bug
...
docs(install_faq): document the Docker media type bug
8 years ago
Matthew Fisher
704bc47225
move newTillerPortForwarder to pkg/helm/portforwarder
8 years ago
Matt Butcher
0b1a0ae991
docs(install_faq): document the Docker media type bug
...
Closes #1824
8 years ago
Matt Butcher
fa96057b43
Merge pull request #1900 from technosophos/fix/1897-search-sort-order
...
fix(helm): fix sort order on helm search
8 years ago
Michelle Noorali
bf9ae52e1c
ref(*): change test hook to be test-success
8 years ago
Michelle Noorali
e95a0570ad
chore(pkg/releasetesting): add test_suite tests
...
* and comments
8 years ago
Matt Butcher
c1e6683233
Merge pull request #1903 from bacongobbler/pvc-kind
...
add PersistentVolumeClaim to the kind sorter list
8 years ago
Matthew Fisher
3f463783a5
add PersistentVolumeClaim to the kind sorter list
...
At the present time, PersistentVolumeClaims are not a recognized object so it is installed last.
PVCs should be installed shortly after PersistentVolumes have been bound.
8 years ago
Matt Butcher
e94b20d7cd
Merge pull request #1901 from mattfarina/roadmap
...
feat(README): Adding roadmap location
8 years ago
Matt Farina
6cd5520854
feat(README): Adding roadmap location
...
To exit incubation the roadmap needs to be listed in the wiki per
the incubator documentation. For more detail see
https://github.com/kubernetes/community/blob/master/incubator.md
8 years ago
Matt Butcher
f018364f91
fix(helm): fix sort order on helm search
...
During search index construction, records were not correctly sorted by
version number, which resulted in the wrong records being inserted into
the index.
Along the way, added tests and fixed a few comments.
Closes #1897
8 years ago
Matt Butcher
adc18e2463
fix(helm): fix 'helm dep up' to fetch by URL
...
A regression was introduced which required chart download URLs have the
same URL prefix as the chart repo that referenced them. A second
regression transformed that URL into a request for the latest version of
that chart, sidestepping semver constraints.
This fix closes both issues, which were present in the same function.
Closes #1845
Closes #1846
8 years ago
Michelle Noorali
e132191275
ref(pkg/): refactor helm test logic
...
pulled logic out in pkg/releasetesting
8 years ago
Vaughn Dice
9bd12953a9
feat(*): add kube client test
...
* for WaitAndGetCompletedPodPhase
8 years ago
Michelle Noorali
58c05f87d7
feat(*): stream helm test messages to client
8 years ago
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