Matthew Fisher
8478fb4fc7
chore(*): bump version to v2.7.2
7 years ago
Matt Butcher
f3127b94b2
Fix/missing ssl params ( #3152 )
...
* fix(helm): add TLS params back
During a recent refactor, several TLS flags stopped being processed for
a few of the commands. This fixes those commands, and documents how to
set up TLS.
* fix(tiller): add stricter certificate verification
The older version of Tiller allowed a weaker set of certificate checks
than we intended. This version requires a client certificate, and then
requires that that certificate be signed by a known CA. This works
around the situation where a user could provide a self-signed
certificate.
(cherry picked from commit e8e6ac5d77
)
7 years ago
Adam Reese
4aef7fddc8
chore(*): bump version to v2.7.1
7 years ago
Pietro Menna
db76009b67
fix(helm): update documentation to reflect $HOME env var change
7 years ago
Pietro Menna
4f04c1cdb6
fix(helm): home env not set on Windows
...
When setting $HELM_HOME, only $HOME was considered. This variable is not always present on Windows.
7 years ago
Justin Scott
c2a0572c42
docs(helm): Correct --set to --override in helm init example
7 years ago
Adam Reese
0647a7b17a
fix(tiller): upgrade last deployed release
...
Fixes #2437
Two bugs were causing this behavior
- Tiller was marking the previous release superseded when an upgrade
failed.
- Upgrade was diffing against failed releases
7 years ago
Christian Jauvin
a97e4dba94
Fix for relative chart path support in index.yaml
7 years ago
Matthew Fisher
9c79102b03
use 127.0.0.1 instead of localhost
7 years ago
Adam Reese
08c1144f5e
chore(*): bump version to v2.7.0
7 years ago
Matthew Fisher
3fc189d688
Merge pull request #3049 from bacongobbler/fix-circle-tags
...
fix circle not building tags
7 years ago
Matthew Fisher
f4f932fabd
fix circle not building tags
...
CircleCI recently skipped building tags by default, so we need to
explicitly enable it.
See https://circleci.com/docs/2.0/configuration-reference/#tags
7 years ago
Matthew Fisher
4f5e88d53d
Merge pull request #3048 from venezia/add_dollar_sign_doc
...
Adding documentation on $ variable scope
7 years ago
Michael Venezia
8a30b58eee
Updating comment indentation
...
as requested
7 years ago
Michael Venezia
14cd8833ee
Adding documentation on $ variable
7 years ago
Matthew Fisher
ad1cbd68e8
Merge pull request #3040 from 3h4x/patch-1
...
Small change in README.md
7 years ago
Marcin Brański
79d51c5cfe
Update README.md
...
There should be a colon because it precedes an explanation or an enumeration, or list.
7 years ago
Matthew Fisher
f92572e3f4
Merge pull request #3039 from profkittyface/doc-update
...
Working on Fedora release 25 - kubeadm v1.7.0 - kubelet v1.8.1
7 years ago
Drew Hunt
f98b0fcdeb
Working on Fedora release 25 - kubeadm v1.7.0 - kubelet v1.8.1
...
Tested:
- Installing/deleting Chart
- Chart upgrade and Chart rollback
7 years ago
Matthew Fisher
b30be7a9d3
Merge pull request #3035 from emedvedev/patch-1
...
Fix a small typo in `yaml_techniques.md`
7 years ago
Edward Medvedev
bbad3c574e
Fix a small typo in `yaml_techniques.md`
...
Fix a typo: `coffess`.
7 years ago
Matthew Fisher
1eff362941
Merge pull request #3014 from mattfarina/fix/semver-order
...
fix(semver): fixed edge cases that do not match prerelease
7 years ago
Matthew Fisher
4f5cbed126
Merge pull request #3029 from bacongobbler/fix-glide
...
pin golang.org/x/sys to master
7 years ago
Matthew Fisher
4b9b780421
add comment on k8s 1.8.1 deps being hosed
7 years ago
Matthew Fisher
4f107cc48a
pin golang.org/x/sys to master
...
fixes issues seen in master with `make build-cross` for windows
7 years ago
Michael Venezia
e170392303
Adding how to add an image pull secret in helm ( #3022 )
...
Document how to add an image pull secret in Helm
Provide an example of how to take an image registry, user name, and password and prepare a Secret that can be used by a pod to pull a protected container image.
7 years ago
Matt Butcher
c888402158
Merge pull request #3011 from technosophos/ref/sprig-2.14
...
chore(sprig): bump sprig to 2.14.0
7 years ago
Matt Butcher
1aeeed0478
chore(sprig): bump sprig to 2.14.0
7 years ago
Adam Reese
13912b3cc0
Merge pull request #3008 from adamreese/ref/kube-1.8
...
ref(*): kubernetes v1.8 support
7 years ago
Taylor Thomas
500c9983b5
Merge pull request #3019 from thomastaylor312/fix/crd_ordering
...
fix(tiller): Adds CRD ordering
7 years ago
Taylor Thomas
ab096b883a
Merge pull request #2721 from RemingtonReackhof/secrets-support
...
feat(2196): secrets management
7 years ago
Adam Reese
2b43ecd405
ref(*): kubernetes v1.8 support
7 years ago
Maciej Kwiek
3d94d9cfec
Merge pull request #2769 from rocky-nupt/feature-remote-value
...
feat(helm):Allow remote values.yaml with -f
7 years ago
Justin Scott
3410a6904a
Merge pull request #2557 from jascott1/i2299-init
...
feat(helm): Add --node-selectors, --override and --output flags to helm init
7 years ago
Justin Scott
16c579f3a3
feat(helm): Add --node-selectors and --output flags to helm init
...
This feature enables users to specify more control over where Tiller pod
lands by allowing "node-selectors" to be specified. Alternatively, the
"--output" flag will skip install and dump Tiller's raw Deployment manifest to stdout so user may alter it as they see fit (probably with a JSON manipulation tool like jq).
Closes #2299
7 years ago
Taylor Thomas
29c3b5276f
fix(tiller): Adds CRD ordering
...
This adds CRD ordering into the explicit kind sorter list
Closes #2925
7 years ago
Remington Reackhof
9af1018bd3
Add secrets storage backend for releases
7 years ago
Taylor Thomas
d4ccef7ba7
Merge pull request #2999 from bonifaido/getterConstructor-err
...
fix(helm): invoking getterConstructor returns downstream error now
7 years ago
Matt Farina
b27b11a280
fix(semver): fixed edge cases that do not match prerelease
...
>0.0.0-a does not match pre-releases on 0.0.0 that start with a
capital letter or number. This has to do with the ordering of
code points. Numbers and capital letters come before lowercase
letters.
>0.0.0-0 should match all valid pre-releases on 0.0.0. According
to the spec, "Numeric identifiers MUST NOT include leading zeroes."
A 0 is also the lowest code point for all the allowed characters
in a pre-release
7 years ago
Dhilip
67af4998de
helm create all defined template names should be namespaced … ( #2845 )
...
* helm create all defined template names should be namespaced https://docs.helm.sh/chart_best_practices/#names-of-defined-templates
* Update Doc
* Update example
7 years ago
Michal Cwienczek
dad8c6f644
Fix #2937 - helm always appends /index.yaml at the end of URL ( #2988 )
...
* Closes #2937
Added required dependency to run make test in developer's guide
* Fixed base URL appending when chart address is not absolute
* Removed requirement from developers.md
* Fixed unnecessary line breaks
* Added tests for query string repo
* Returning URL along with error
7 years ago
Matthew Fisher
d7a81c99e1
Merge pull request #2976 from HotelsDotCom/respect-apiversion-change
...
Ignore Apiversion, use Kind and Name only to search for original resource on update/delete
7 years ago
Matthew Fisher
7dc57bcb8d
Merge pull request #3003 from bacongobbler/changelog-2.6
...
chore(*): bump version to v2.6.2
7 years ago
Matthew Fisher
6afbb70d47
chore(*): bump version to v2.6.2
...
(cherry picked from commit a4f965e075
)
7 years ago
Matthew Fisher
d4f5a133dd
Merge pull request #2960 from HotelsDotCom/upgrade-failure-record-release-as-update
...
Correctly persists Release upgrade failure
7 years ago
Taylor Thomas
f8e9741578
Merge pull request #2984 from thomastaylor312/feat/add_missing_test
...
fix(sorter): Adds missing unit test
7 years ago
Matthew Fisher
e3e1116eaa
Merge pull request #2857 from llsheldon/fix-dependency-alias
...
fix(helm):Fix dependency aliaes not working
7 years ago
Matthew Fisher
3799c477d1
Merge pull request #2938 from bacongobbler/remove-facebookgo
...
Remove facebookgo dependencies
7 years ago
Nandor Kracser
a28e5dd2b3
fix(helm): invoking getterConstructor returns downstream error now
7 years ago
Matthew Fisher
018ef2426f
Merge pull request #2992 from flyer103/developer-doc
...
docs/developers.md: add notes for `k8s.io` dir
7 years ago