Jim
c77e149243
change var naming to match helm
9 years ago
Jim
29d0c339b4
fix(helm): make 'helm help' text punctuation consistent
9 years ago
Jim
c5557b3872
fix(tiller): make text punctuation consistent with helm help
...
Closes #1072
9 years ago
Matt Butcher
70b29a47d0
Merge pull request #1368 from prydonius/1367-fix-linter-tmpl-regex
...
fix(lint): validateNoMissingValues template regex
9 years ago
Matt Butcher
789e411d8d
Merge pull request #1370 from prydonius/1369-fix-yaml-validation
...
fix(lint): use correct hash key for rendered tmpl
9 years ago
Matt Butcher
70a9e4aa6b
Merge pull request #1364 from technosophos/fix/1135-output-consistency
...
fix(helm): make 'helm install' output more consistent
9 years ago
Adnan Abdulhussein
d81ac482ee
fix(lint): use correct hash key for rendered tmpl
...
The YAML validation was broken because the renderedContentMap has keys
with the path to the template including the chart directory, whereas the
linter was trying to access it relative from the chart directory.
For example, the hash key was `drupal/templates/deployment.yaml` but the
linter was trying to access `templates/deployment.yaml`. This commit
fixes the key used to access the rendered content.
10 years ago
Adnan Abdulhussein
aed4db02e8
fix(lint): validateNoMissingValues template regex
...
Fixes the regex for extracting templates to include templates that
suppress newlines and ignore any conditional flow statements.
10 years ago
Matt Butcher
70c453c45f
fix(helm): make 'helm install' output more consistent
...
This fixed capitalization differences, removed duplicate fields,
clarified a few things, and changed a few display names.
Closes #1135
10 years ago
Adam Reese
1a7373e584
Merge pull request #1363 from adamreese/feat/helm-init-canary
...
feat(helm): add canary option to init command
10 years ago
Matt Butcher
ab6a73a0b5
Merge pull request #1361 from technosophos/fix/1334-merge-indices
...
fix(helm): allow entries to be merged into index
10 years ago
Adam Reese
4f43007908
feat(helm): add canary option to init command
...
To install the tiller canary `helm init --canary`
10 years ago
Adam Reese
fb5c09823e
Merge pull request #1359 from adamreese/feat/kube-context-init
...
feat(helm): add kubeconfig context switching to init command
10 years ago
Matt Butcher
25c7e6dc21
fix(helm): allow entries to be merged into index
...
Between Alpha.4 and Alpha.5 there was a change in the indexing logic.
This prevent indices from being appended to (because those index files
were often broken). This change allows the user to explicitly merge an
existing index and a generated index.
Closes #1334
10 years ago
Adam Reese
0f5990f4cd
feat(helm): add kubeconfig context switching to init command
...
- decouple tunnel from kube client
- add context switching for init cmd
- add unit tests for installer and init command
- refactor installer and remove unused code
10 years ago
Matt Butcher
9c3f883ec3
Merge pull request #1355 from technosophos/docs/1348-missing-created-timestamp
...
docs(chart_repositories): document correct index example
10 years ago
Adam Reese
7374ca3f3b
Merge pull request #1337 from adamreese/feat/1127-kube-context
...
feat(helm): add kubeconfig context switching
10 years ago
Michelle Noorali
13e5c2f380
Merge pull request #1353 from michelleN/ref-rollback
...
bug(tiller): correct release statuses on rollback
10 years ago
Adam Reese
bf4055417e
Merge pull request #1352 from adamreese/fix/1310-glide-version
...
docs(developers): require glide 0.12.0
10 years ago
Matt Butcher
491dc32552
docs(chart_repositories): document correct index example
...
The previous index.yaml example was missing a few fields, notably the
'created' timestamp.
Closes #1348
10 years ago
Michelle Noorali
1ad84745f8
bug(tiller): correct release statuses on rollback
...
Correcting similar issue as the one with UpdateRelease
(#1137 ) for RollbackRelase
10 years ago
Michelle Noorali
69b03a3332
Merge pull request #1335 from michelleN/ref-perform-update
...
bug(tiller): set status correctly in performUpdate
10 years ago
Michelle Noorali
57b2e6429e
bug(tiller): set status correctly in performUpdate
...
Handling release status updates on errors better
resolves #1137
10 years ago
Adam Reese
f5c07ea0cf
docs(developers): require glide 0.12.0
...
ref: #1310
10 years ago
Matt Butcher
e78cce27ff
Merge pull request #1350 from christensenemc/patch-1
...
Fixed broken link from "chart.md" to "charts.md"
10 years ago
Matt Butcher
a747289b2f
Merge pull request #1344 from technosophos/docs/1343-helm-repo-index-url
...
docs(repo): update repo index docs to show new flags
10 years ago
Brian
d6b0dc0626
Merge pull request #1339 from fibonacci1729/ref/rlsutil
...
ref(*): add pkg/releaseutil.
10 years ago
Matt Butcher
cbe7a2a993
Merge pull request #1345 from technosophos/fix/1342-ignore-charts-dotfiles
...
fix(helm): ignore dotfiles in charts/ directories
10 years ago
Matt Butcher
b89d35b66b
Merge pull request #1349 from technosophos/fix/1348-history-segfault
...
fix(helm): prevent 'helm history' from segfaulting
10 years ago
Erik Christensen
d379eda785
Fixed broken link from "chart.md" to "charts.md"
10 years ago
Matt Butcher
864d278339
fix(helm): prevent 'helm history' from segfaulting
...
An release that does not contain chart metadata cannot print its chart
name/version. This fixes a bug found in the wild where a release did not
(for reasons yet unknown) contain a chart.
Closes #1348
10 years ago
fibonacci1729
24fe8643de
ref(*): add sorter/filter utilties to releaseutil
10 years ago
Adam Reese
62e4d8cab5
Merge pull request #1346 from nhlfr/remove-unused-consts-client
...
fix(helm): remove unused consts from client
10 years ago
Michelle Noorali
2fa6335ce4
Merge pull request #1324 from michelleN/repo-remove-refactor
...
ref(helm): add new line after repo remove msg
10 years ago
Michal Rostecki
1b5c993853
fix(helm): remove unused consts from client
...
Const variables defined in client.go weren't used
anywhere.
Ref #953
10 years ago
Matt Butcher
2388e71528
fix(helm): ignore dotfiles in charts/ directories
...
This causes 'helm dep [up|install]' to ignore files in charts/ that
start with either a dot or an underscore. It also changes the
chartloader to ignore those files.
Also, if a 'helm dep up' does not find a charts/ directory, it creates
one.
Closes #1342
10 years ago
Adam Reese
3c98c512c9
Merge pull request #1336 from adamreese/feat/grpc-tracing
...
feat(tiller): add optional grpc tracing
10 years ago
Matt Butcher
11d4a67a80
docs(repo): update repo index docs to show new flags
...
This adds the `--url` flag to examples.
Closes #1343
10 years ago
Matt Butcher
cd4069dd9b
Merge pull request #1341 from technosophos/fix/1330-update-k8s
...
fix(k8s): Update to latest Kubernetes release
10 years ago
Adam Reese
fe0957d74d
Merge pull request #1340 from adamreese/fix/checksum
...
fix(Makefile): allow overriding the version for canary builds
10 years ago
Matt Butcher
5accd5a3ab
fix(k8s): Update to latest Kubernetes release
10 years ago
Adam Reese
a0d3e43b53
fix(Makefile): allow overriding the version for canary builds
10 years ago
Matt Butcher
a324146945
Merge pull request #1323 from technosophos/fix/1305-mark-deleted-on-fail
...
fix(tiller): when delete fails, mark release as deleted
10 years ago
Adam Reese
a2e577814d
feat(helm): add kubeconfig context switching
...
closes : #1127
10 years ago
Adam Reese
995f7569c9
feat(tiller): add optional grpc tracing
10 years ago
Adam Reese
7a5ee459f7
Merge pull request #1327 from adamreese/fix/1302-checksum
...
fix(Makefile): explicitly set bash shell in Makefile
10 years ago
Adam Reese
9b91996c8a
fix(Makefile): explicitly set bash shell in Makefile
...
fixes #1302
10 years ago
Adam Reese
36ec1901eb
Merge pull request #1316 from adamreese/ref/linters
...
ref(scripts): use gometalinter for linters
10 years ago
Matt Butcher
40a55b939f
Merge pull request #1325 from technosophos/fix/1301-helm-help-consistency
...
fix(helm): make 'helm help' text punctuation consistent
10 years ago
Adam Reese
f71230ccd3
fix(*): resolve go linter issues
10 years ago