fibonacci1729
061b534885
fix panic in memory_test when release status is nil
8 years ago
fibonacci1729
aff817a1fc
run gofmt
8 years ago
fibonacci1729
4210d60c5e
add storage type to interface with multiple drivers
8 years ago
fibonacci1729
6dd5c9783e
add driver package to encapsulate storage backends
8 years ago
fibonacci1729
943eadec38
move old memory impl. to driver/
8 years ago
Matt Butcher
be053f3c05
Merge pull request #994 from technosophos/feat/950-files-in-templates
...
feat(tiller): add Files map to templates
8 years ago
Matt Butcher
033dbfe75e
feat(tiller): add Files map to templates
...
Templates can now access the non-template files in a chart by using
the '{{.Files}}' map inside of a template.
Relates to #950
8 years ago
Matt Butcher
a1fffc6977
Merge pull request #997 from technosophos/feat/972-reuse-name
...
feat(helm,tiller): add --reuse-name flag to helm install
8 years ago
Adam Reese
ccaec6e66f
Merge pull request #1000 from adamreese/feat/reaper
...
feat(kube): reap related resources on delete
8 years ago
Adam Reese
ea4dcbab11
feat(kube): reap related resources on delete
8 years ago
Matt Butcher
9fe7f41364
feat(972): add --reuse-name flag to helm install
...
This will allow helm install to re-use names for releases that were
already deleted.
8 years ago
Seth Goings
060fe827be
Merge pull request #996 from sgoings/add-semver-link
...
chore(README): link to Semver 2 spec
8 years ago
Seth Goings
9d202cfcf3
chore(README): link to Semver 2 spec
8 years ago
Matt Butcher
bd5a9753a7
Merge pull request #992 from technosophos/fix/991-partials-parse-error
...
fix(tiller): remove partials and empty manifests
8 years ago
Matt Butcher
95dbefe06d
fix(tiller): remove partials and empty manifests
...
This removes partials and empty manifests during the sortHooks
operation. Doing so makes sortHooks the defacto place for sorting
manifests, hooks, and partials.
Closes #991
8 years ago
Adam Reese
9f62bb5edb
Merge pull request #987 from adamreese/fix/inspect-description
...
fix(cmd): set description for inspect
8 years ago
Michelle Noorali
6006fc7b21
Merge pull request #963 from michelleN/feat/690-helm-upgrade
...
feat(*): add upgrade command and validations
8 years ago
Matt Butcher
b5354180f6
Merge pull request #984 from GrantSeltzer/inspect-chart-or-values-options
...
Add subcommands to inspect only chart or values
8 years ago
Adam Reese
ade20bcbcf
fix(cmd): set description for inspect
8 years ago
Adam Reese
fa67287ac4
Merge pull request #986 from adamreese/fix/validate-running-tiller
...
fix(cmd): ensure tiller is running for connection
8 years ago
Matt Butcher
82797ae28c
Merge pull request #974 from technosophos/fix/971-inherit-passed-values
...
fix(tiller): merge -f values correctly
8 years ago
Michelle Noorali
62667e9f12
ref(tiller): fix chart version comparison
8 years ago
Michelle Noorali
f74720613b
chore(helm): add client test for upgrade cmd
...
I edited releaseMock as part of this PR
8 years ago
Michelle Noorali
36699cc22d
ref(helm): refactor cmd/upgrade for unit testing
8 years ago
Michelle Noorali
0fcd7fccea
feat(tiller): add upgrade validations to tiller
8 years ago
Michelle Noorali
5e654c0380
feat(*): get helm & tiller chatting about upgrades
8 years ago
Michelle Noorali
e633b4b75a
feat(pkg/helm): fill in proto for UpdateRelease
8 years ago
Michelle Noorali
35bf1c66b4
feat(helm): add helm upgrade command
8 years ago
Grantseltzer
23421f9133
Add subcommands to specify only chart or values inspected
...
Signed-off-by: Grantseltzer <grantseltzer@gmail.com>
8 years ago
Adam Reese
49491a8a0a
fix(cmd): ensure tiller is running for connection
...
Fixes: https://github.com/kubernetes/helm/issues/981
8 years ago
Matt Butcher
37fd3e412b
Merge pull request #982 from technosophos/feat/944-command-line-values
...
feat(helm): support command-line values for install
8 years ago
Matt Butcher
76d8004abd
Merge pull request #979 from technosophos/fix/improved-delete-errors
...
fix(tiller): improve deletion error messages
8 years ago
Adam Reese
9b89713cd6
Merge pull request #985 from adamreese/feat/verify-licenses
...
feat(ci): validate license block in source files
8 years ago
Adam Reese
fcaa426491
chore(*): add missing license blocks to source code
8 years ago
Adam Reese
f44f6780fc
feat(ci): validate license block in source files
8 years ago
Matt Butcher
4b6fbbb67f
feat(helm): support command-line values for install
...
Add support for specifying key/value pairs on the command line, instead
of only in a YAML file.
This currently accepts either command line pairs or a YAML file, but
does not support combining the two.
Closes #944
8 years ago
Adam Reese
877d9b281c
Merge pull request #976 from adamreese/feat/parallel-coverage
...
feat(ci): run test coverage in parallel
8 years ago
Matt Butcher
8119513cdd
fix(tiller): improve deletion error messages
...
This stops a repeat deletion from sending requests all the way to
Kubernetes, and gives a clear error message when a deletion is requested
on an already deleted resource.
Relates to #972
8 years ago
Adam Reese
870918d1e5
feat(ci): run test coverage in parallel
...
```
./scripts/coverage.sh 37.25s user 4.15s system 144% cpu 28.615 total
```
```
./scripts/coverage.sh 47.96s user 6.77s system 567% cpu 9.647 total
```
8 years ago
Matt Butcher
1c598c2d13
Merge pull request #964 from technosophos/fix/957-template-name-on-failure
...
fix(tiller): provide filename when YAML is bad
8 years ago
Matt Butcher
9d5fdbdaaa
Merge pull request #970 from technosophos/feat/967-helm-inspect
...
feat(helm): add 'helm inspect'
8 years ago
Matt Butcher
57fecb2735
fix(tiller): provide filename when YAML is bad
...
This makes the template system less tolerant in the name of detecting
YAML parse errors before things are sent to Kubernetes. It returns a
more detailed error message when a template creates a manifest which is
not valid YAML.
Closes #957
8 years ago
Matt Butcher
c5cc02a611
feat(helm): add 'helm inspect'
...
This basic version of helm inspect displays the Chart.yaml and
values.yaml files on STDOUT.
Closes #967
8 years ago
Matt Butcher
95eeba3805
fix(tiller): merge -f values correctly
...
This fixes a bug in which passed-in values files were not correctly
merged into the chart's default values YAML data. I believe it also
fixes some other prioritization bugs in values merging.
The existing unit test was wrong (see TestCoalesceValues). It is
fixed now. Also added more tests to simulate issue #971 .
In the course of writing this, I removed some vestigial code as
mentioned in #920 .
Closes #971
Closes #920
8 years ago
Matt Butcher
2fc9403641
Merge pull request #965 from technosophos/docs/926-why-helm
...
docs(README): update README with basic information
8 years ago
Matt Butcher
d3e4e9f4b1
docs(README): update README with basic information
...
The README reflected an earlier stage of project development. This
update gives more useful "Why Helm?" documentation at the top, and
updates several of the instructions to be more reflective of current
status.
8 years ago
Matt Butcher
87a010b5e5
Merge pull request #962 from technosophos/docs/960-hooks-lifecycle
...
docs(charts): explain hook resource lifecycle
8 years ago
Adam Reese
7a38dcff93
Merge pull request #959 from adamreese/feat/release-namespace
...
feat(*): install releases into namespace
8 years ago
Matt Butcher
a7575e8754
Merge pull request #969 from technosophos/docs/logo
...
docs(logo): add the official helm logo png
8 years ago
Matt Butcher
09c74ee8b4
docs(logo): add the official helm logo png
8 years ago