xuhaigang
4ffb9dfb4b
Fix(helm): Fix the bug of dependency update deleting subcharts
...
In Helm 2.6.0, the new delete feature that deletes old versions of
charts is deleting subcharts that aren't in requirements.yaml.
In this patch, I judge the dependency whether it is included in the
requirements.yaml before deleting it.
Closes #2830
8 years ago
Adam Reese
3cf8f2c8b3
Merge pull request #2690 from adamreese/fix/helm-home-plugins-again-again
...
fix(helm): fix flag parsing once and for all
8 years ago
Adam Reese
7112a48af6
ref(helm): refactor cleanup of environment after tests run
8 years ago
Adam Reese
a29e610938
fix(helm): fix flag parsing once and for all
8 years ago
Taylor Thomas
1261f71faf
Merge pull request #2668 from thomastaylor312/fix/dep_help
...
fix(dep): Fixes out of date dependency info
8 years ago
Taylor Thomas
aaaf480d3d
Regenerates docs
8 years ago
Taylor Thomas
564ba7ba7c
fix(dep): Fixes out of date dependency info
...
The help text for `helm dep` contained out of date info about
referring to a chart repo by name vs. URL.
8 years ago
Matt Butcher
4445cd22b0
Merge pull request #2664 from technosophos/fix/2617-fetch-values
...
fix(helm): fix `helm get` subcommands
8 years ago
Matt Butcher
b671888ff4
fix(helm): fix `helm get` subcommands
...
This correctly sets up the tunnel for `helm get values`, `helm get
manifest`, and `helm get hooks`.
Closes #2617
8 years ago
Adam Reese
0f8abb21a8
Merge pull request #2675 from adamreese/fix/2630-helm-home-plugins
...
fix(helm): support HELM_HOME during plugin loading
8 years ago
Adam Reese
65c6c4f21a
Merge pull request #2674 from adamreese/fix/2623-sort-manifest-flake
...
fix(tests): fix sorting hooks test flake
8 years ago
Adam Reese
876cbc205c
fix(helm): support HELM_HOME during plugin loading
...
closes #2630
8 years ago
Adam Reese
9325d136d4
fix(tests): fix sorting hooks test flake
8 years ago
Adam Reese
76d3161e7b
Merge pull request #2673 from adamreese/fix/2630-helm-home
...
fix(helm): load home from flags during runtime
8 years ago
Adam Reese
dd952e61f0
fix(helm): load home from flags during runtime
8 years ago
Taylor Thomas
0a20ed73be
Merge pull request #2644 from alonl/master
...
Fix a bug causing 'helm depndency update' to delete required charts
8 years ago
Steven E. Harris
2aaad8242e
Merge pull request #2666 from adamreese/ref/cleanup-tests
...
ref(tests): simplify kind sorter test
8 years ago
Steven E. Harris
e028be065d
Merge pull request #2650 from arschles/apiservice
...
Add the "APIService" kind to the installation sort order
8 years ago
Aaron Schlesinger
58a2d7b5c1
Adding APIService to the kind sorter tests
8 years ago
Adam Reese
0d1f6b981f
ref(tests): simplify kind sorter test
8 years ago
Adam Reese
72bb046cc2
Merge pull request #2665 from adamreese/fix/docs
...
fix(docs): run docs generator
8 years ago
Adam Reese
057c747c1f
fix(docs): run docs generator
8 years ago
Adam Reese
2190375f65
Merge pull request #2662 from mattfarina/fix/semver-prerelease-num
...
fix(semver): Prerelease number comparison issues
8 years ago
Matt Farina
453e79ffc5
fix(semver): Prerelease number comparison issues
...
In prerelease numbers there was the potential for number comparison
issues. For example, 99 being greater than 103. This is now fixed.
8 years ago
Steven E. Harris
fd98a03ff6
Merge pull request #2654 from mstrzele/helm-list-a
...
feat(helm): add -a flag to 'helm list'
8 years ago
Maciej Strzelecki
46275612c3
feat(helm): add -a flag to 'helm list'
...
There's 'helm get values -a' already. I always try to use 'helm list -a'
spontaneously.
8 years ago
Taylor Thomas
97818b1fce
Merge pull request #2648 from scottrigby/allow-delete-key
...
Allow deletion of a previous values file key
8 years ago
Scott Rigby
8be9bb51de
Update documentation for deleting a default key from a values file
8 years ago
Scott Rigby
6dc31f8e96
Test that the coalesced key is properly removed for all YAML null syntax options, but not for empty string
8 years ago
Scott Rigby
645f01eb22
New Helm functionality to delete a coalesced YAML key when the value is nil.
...
- Note that this covers all YAML null syntax options:
ref: http://yaml.org/type/null.html
- Note that we do a nil comparison because the encoding/yaml package parses
YAML properly and any variation of null, Null, NULL, or ~ is converted to nil
by the time we get here.
8 years ago
Adam Reese
099790a00c
Merge pull request #2612 from adamreese/feat/kubernetes-1.7
...
feat(*): use kubernetes 1.7
9 years ago
Adam Reese
845e990143
feat(*): use kubernetes 1.7
9 years ago
Matt Butcher
883da97396
Merge pull request #2607 from sushilkm/issues/2599
...
Adds charts in "charts\" directory to dependencies
9 years ago
Aaron Schlesinger
5ff75f84a6
Adding APIService to the sort order
...
This ensures that APIService resources are installed last and
uninstalled first
9 years ago
Alon Lavi
04a7e241e6
Fix a bug causing 'helm depndency update' to delete required charts
9 years ago
Steven E. Harris
475de1f47a
Merge pull request #2637 from IlyaSemenov/document_nodeport_requirement
...
Remove mention of the Service type from the ingress documentation
9 years ago
Ilya Semenov
13b15f5662
Remove service.type mention from ingress docs
9 years ago
Matt Butcher
6eaeadf228
Merge pull request #2635 from jascott1/cap_init2
...
Capitalize 'helm' text in init.go.
9 years ago
Justin Scott
8cac493557
Capitalize 'helm' text in init.go.
9 years ago
Taylor Thomas
dfb296ad77
Merge pull request #2626 from twolfy/master
...
[scripts/get] makes sudo an optional dependency
9 years ago
Steven E. Harris
24238bbe20
Merge pull request #2601 from jascott1/cap_init
...
feat(helm): Correct capitalization and punctuation for all user facing text
9 years ago
Matt Butcher
f0af7d60e7
Merge pull request #2592 from raisemarketplace/compare
...
ref(helm): consolidate vars() function
9 years ago
Tony Fahrion
8eace382f9
improve check if we are root already - in scripts/get
...
$EUID is readonly, so it should be save to test against it.
Thanks for the tip @thomastaylor312 !
9 years ago
Taylor Thomas
6931a2387d
Merge pull request #2629 from gmile/patch-1
...
Reduce indent in code block
9 years ago
Taylor Thomas
4204f69cd2
Merge pull request #2628 from KarolisL/patch-1
...
Remove confusing 'if' from install.md
9 years ago
Taylor Thomas
1ea663a32b
Merge pull request #2625 from santiycr/patch-1
...
charts.md updates
9 years ago
Santiago Suarez Ordoñez
4c58fb0443
removing redundant content after reorg
9 years ago
Eugene Pirogov
0104bce792
Add syntax highlighting
9 years ago
Eugene Pirogov
5a892efcf8
Reduce indent in code block
9 years ago
Karolis Labrencis
25852aa8f4
Remove confusing 'if' from install.md
...
The "if" might confuse reader
9 years ago