Jian Qiu
95cdc705af
Add --url option to helm serve
...
This PR is to add --url flag for helm serve, so that
urls in index.yaml will be changed to the corresponding value.
8 years ago
Matt Butcher
f4b7eb5b01
Merge pull request #2000 from yuvipanda/add-tojson
...
Add ToJson and FromJson template functions
8 years ago
Adam Reese
28fbd42c66
Merge pull request #1989 from Ladicle/fix/local-cluster
...
fix(local-cluster): fix missing variable option
8 years ago
Matt Butcher
c9bbb76e57
Merge pull request #1954 from bacongobbler/1951-podsecuritypolicy
...
set $HOME in tiller container to /tmp
8 years ago
YuviPanda
cd7275069e
Use backtick quotes to avoid excess escaping
8 years ago
Matt Butcher
16b043b8d5
Merge pull request #1988 from technosophos/docs/1967-helm-repo-index
...
docs(chart_repository): fix bug in code example
8 years ago
YuviPanda
97a655d225
Add tests for ToJson
8 years ago
YuviPanda
5c52fe6ad6
Add ToJson and FromJson template functions
8 years ago
Matt Butcher
1113a106cb
Merge pull request #1991 from technosophos/docs/named-template-error
...
docs(named_templates): fixed broken template
8 years ago
Matt Butcher
60dd133564
Merge pull request #1986 from jose5918/umbrella-chart-related
...
Adds "Workflow Umbrella Chart" article to related.md
8 years ago
Matt Butcher
078c365677
docs(named_templates): fixed broken template
8 years ago
Ladicle
84e014026c
fix(local-cluster): fix missing variable option
...
`unbound variable` error occurs when docker-machine is not used.
8 years ago
Matt Butcher
393d13af31
docs(chart_repository): fix bug in code example
...
Closes #1967
8 years ago
Matt Butcher
9a661a7d76
Merge branch 'master' into umbrella-chart-related
8 years ago
Matt Butcher
1a2609619d
Merge pull request #1980 from technosophos/docs/new-index
...
docs(index): Move doc index into a separate file.
8 years ago
Matt Butcher
eb6ca4af30
Merge pull request #1976 from technosophos/docs/1564-ci-cd-docs
...
docs(related): add CI/CD docs
8 years ago
Matt Butcher
41f9d4059a
Merge pull request #1975 from technosophos/fix/1974-fix-broken-cache-files
...
fix(helm): fix broken cache paths in repositories
8 years ago
Jose Aguirre
f410e01123
Adds "Workflow Umbrella Chart" article to related
8 years ago
Matt Butcher
d9173cc9ba
docs(index): Move doc index into a separate file.
...
This removes the full TOC from the README and puts it in an index. This
will help when we begin to autogenerate a website based on
documentation.
8 years ago
Matt Butcher
50cbab37f1
docs(related): add CI/CD docs
...
Closes #1564
8 years ago
Matt Butcher
4829fad3a3
fix(helm): fix broken cache paths in repositories
...
A regression was committed during 2.2.0 that broke the repositories.yaml
file format, switching the cache path from relative to absolute. This
fixes the error.
Closes #1974
8 years ago
Adam Reese
fc315ab598
chore(*): bump to v2.2.0
8 years ago
Matt Butcher
ee2aaff7a6
Merge pull request #1962 from technosophos/fix/2.2.0-style-fixes
...
fix(style): add missing comments
8 years ago
Matt Butcher
44fbfc4263
fix(style): add missing comments
8 years ago
Matt Butcher
5d909d8c30
Merge pull request #1955 from michelleN/test-failure-hook
...
feat(*): add support for test-failure hook
8 years ago
Adam Reese
05ad172142
Merge pull request #1956 from adamreese/fix/recreate-pods-check
...
fix(kube): prevent recreating pods without a selector
8 years ago
Michelle Noorali
6a062e45b7
featt(*): add support for test-failure hook
...
resolves #1927
8 years ago
Adam Reese
790b90b95b
fix(kube): prevent recreating pods without a selector
8 years ago
Matthew Fisher
d1cbd7adae
set $HOME in tiller container to /tmp
8 years ago
Michelle Noorali
318c6f77e6
Merge pull request #1953 from michelleN/testing-docs
...
chore(docs/): document `helm test` feature
8 years ago
Matt Butcher
889902c381
Merge pull request #1917 from jascott1/tags_conds
...
feat(helm): add conditions and tags
8 years ago
Taylor Thomas
8dfea91056
Merge pull request #1923 from qwangrepos/local-path
...
feat(helm): add local path support for deps in requirements.yaml
8 years ago
Taylor Thomas
472ff601dc
Merge pull request #1935 from vdice/add-cleanup-flag-to-test-command
...
feat(helm): add cleanup flag to test command
8 years ago
Vaughn Dice
4a57b01a47
feat(helm): add cleanup flag to test command
8 years ago
Qin Wang
4b6b847b69
fix test chart path change from rebase
...
nit: fix spelling of dependency
8 years ago
Justin Scott
511cbf5f6a
feat(helm): change incorrect list to dict in charts.md example for tags and conditions
8 years ago
Michelle Noorali
e71b07f2ed
chore(docs/): document `helm test` feature
8 years ago
Qin Wang
0153d273ce
fix error checking from os.stat
8 years ago
Qin Wang
39a2d5ec29
feat(helm): add local path support for deps in requirements.yaml
...
fix change requests
8 years ago
Qin Wang
d72ff65325
feat(helm): add local path support for deps in requirements.yaml
...
The following commands:
helm dep update
helm dep build
are now able to take a requirements.yaml with dependency charts' repo defined as:
file://../local/path or file:///root/path
closes : #1884
8 years ago
Matt Butcher
eadd830d01
Merge pull request #1940 from wilkers-steve/fix/miss_dep_warning
...
fix(helm): add warnings for missing chart dependencies
8 years ago
Matt Butcher
5618afe3d4
Merge pull request #1922 from larryrensing/feat/list-namespaces
...
feat(*): add --namespace flag to 'helm list'
8 years ago
Matt Butcher
e29b5e429f
Merge pull request #1945 from seanknox/patch-1
...
docs(related): Add link to croc-hunter video
8 years ago
wilkers-steve
91e820320f
Merge branch 'master' into fix/miss_dep_warning
8 years ago
Steve Wilkerson
98310a915f
fix(helm): add warnings for missing chart dependencies
...
When 'helm install', 'helm package', and 'helm upgrade' are run,
Helm will not issue any warnings if any dependencies listed in
a chart's requirements.yaml file are missing. This change includes
warnings when a chart is found in requirements.yaml but isn't
in charts/.
Closes #1567
8 years ago
Justin Scott
8094acba74
helm(feat): remove space from example condition list
8 years ago
Justin Scott
17c6ae61da
feat(helm): re-enable log warnings for tags and conditions
8 years ago
Justin Scott
f582144968
feat(helm): add docs section about tags and conditions
8 years ago
Justin Scott
fe864ad699
feat(helm): remove logging of tags/condition warnings to pass ci
8 years ago
Justin Scott
58c8aca1cc
feat(helm): fixup if/ele,remove extra string casts, add comments
8 years ago