Matthew Fisher
69002eeb90
Merge pull request #5511 from bacongobbler/helm2-k8s-1.14
...
chore(glide): bump kubernetes to 1.14
6 years ago
Matthew Fisher
3c871c0030
chore(glide): bump kubernetes to 1.14
...
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
6 years ago
Matthew Fisher
15d5deeaea
Merge pull request #5460 from selslack/fix/update-not-found-error-text
...
refactor(*): make "not found" error message user-friendly
6 years ago
Pavel Eremeev
535f9cece5
refactor(*): update error message
...
Signed-off-by: Pavel Eremeev <selslack@users.noreply.github.com>
6 years ago
Matthew Fisher
d8208abb6c
Merge pull request #5503 from ialidzhikov/update-golang
...
Update golang version
6 years ago
ialidzhikov
470203a173
Update golang version
...
Signed-off-by: ialidzhikov <i.alidjikov@gmail.com>
6 years ago
Matthew Fisher
dd4bf49f32
Merge pull request #5500 from devinburnette/update-contributing-docs
...
remove kubernetes from contributing section
6 years ago
Devin Burnette
175bb2e4c4
remove kubernetes
...
Signed-off-by: Devin Burnette <devin.burnette@betterment.com>
6 years ago
Matthew Fisher
abddb77a60
Merge pull request #5491 from arief-hidayat/master
...
fix(script): follow redirected URL of github latest release
6 years ago
Arief Hidayat
65193adc10
fix(script): remove check on release URL
...
Closes #5480
Signed-off-by: Arief Hidayat <mr.arief.hidayat@gmail.com>
6 years ago
Arief Hidayat
7cb03fb562
fix(script): follow redirected URL of github latest release
...
When checking version and desired version is not set, we follow
redirected URL of github latest release to get the latest tag instead of
trying to get the tag value from html content.
Closes #5480
Signed-off-by: Arief Hidayat <mr.arief.hidayat@gmail.com>
6 years ago
Matthew Fisher
c85f9ee8a3
Merge pull request #5485 from tariq1890/fix_lint
...
style: fix golint error in init.go for redundant err!=nil check
6 years ago
Matthew Fisher
360016a5eb
Merge pull request #5464 from tariq1890/update_k8s
...
update kubernetes deps to latest patch releases
6 years ago
Matthew Fisher
f437ae6400
Merge pull request #5459 from robertavram/fix-update-doc-image
...
Update outdated docs image for google storage permissions
6 years ago
tariqibrahim
29795691ed
style: fix golint error in init.go for redundant err!=nil check
...
Signed-off-by: tariqibrahim <taibrahi@microsoft.com>
6 years ago
Matthew Fisher
3ed5c8ef5d
Merge pull request #5478 from bacongobbler/fix-5477
...
fix(scripts): use a more precise method of grepping
6 years ago
Matthew Fisher
ab9cc982a0
fix(scripts): use a more precise method of grepping
...
Github recently changed the output of the releases page.
grepping for the exact <a> tag fixes the issue where the wrong tag was being filtered.
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
6 years ago
Matthew Fisher
465f56f83f
Merge pull request #5468 from Keramblock/master
...
fix(tiller): fixed a typo in tiller and unit test
6 years ago
Mikhail Kirpichev
63ef73d416
fix(tiller): fixed a typo in tiller and unit test
...
There was a typo in a tiller error with "released named" message, I've changed it to "a release named". Also fix a unit-test for it.
Signed-off-by: Mikhail Kirpichev <mkirpic@gmail.com>
6 years ago
tariqibrahim
83d66b643c
update kubernetes deps to latest patch releases
...
Signed-off-by: tariqibrahim <tariq.ibrahim@microsoft.com>
6 years ago
Pavel Eremeev
bc85db3a19
refactor(*): make "not found" error message user-friendly
...
Signed-off-by: Pavel Eremeev <selslack@users.noreply.github.com>
6 years ago
robertavram
a52b4b915d
update outdated docs image for google storage permissions
...
Signed-off-by: robertavram <robert.avram@gmail.com>
6 years ago
Matthew Fisher
744cd20eab
Merge pull request #5423 from joelanford/savedir-mkdir-templates
...
pkg/chartutil: fix SaveDir for nested templates directories
6 years ago
Matthew Fisher
87b44dd892
Merge pull request #5189 from pdecat/refactor-init-for-reuse
...
Refactor helm init command for local helm home directory initialization reuse
6 years ago
Matthew Fisher
e75702f813
Merge pull request #5438 from bacongobbler/remove-appveyor
...
remove appveyor
6 years ago
Matthew Fisher
f2a83630ef
remove appveyor
...
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
6 years ago
Matthew Fisher
412b986422
Merge pull request #5433 from JeLuF/history-max
...
Documentation: Fix "helm init" parameters
6 years ago
Matthew Fisher
ef7b54b0ed
Merge pull request #5426 from tariq1890/up_docker
...
update docker version and golang image version in helm
6 years ago
Adam Reese
0b3a09b2fb
Merge pull request #5425 from VilledeMontreal/fix/zshCompletionDebug
...
Fix debug printouts for zsh completion
6 years ago
Jens Frank
b480badd05
Fix "helm init" parameters
...
In the quickstart guide, --max-history is recommended as parameter for helm init. The actual name of the parameter is --history-max.
Signed-off-by: Jens Frank <jf@mormo.org>
6 years ago
tariqibrahim
528dc95521
update docker version and golang image version in helm
...
Signed-off-by: tariqibrahim <tariq.ibrahim@microsoft.com>
6 years ago
Marc Khouzam
9cc6902875
Must use index 0 for funcstack
...
Normally zsh arrays start at index 1 but when emulating other shells
this may change. During completion, we run the command
emulate -L sh
which affects the indexing of zsh arrays to make it start at 0.
Consequently, when replacing FUNCNAME by funcstack, we should not
change the index.
Signed-off-by: Marc Khouzam <marc.khouzam@ville.montreal.qc.ca>
6 years ago
Marc Khouzam
4fec4b6766
Fix debug printouts for zsh completion
...
Cobra provides some out-of-the-box debugging for bash completion.
To use it, one must set the variable BASH_COMP_DEBUG_FILE to
some file where the debug output will be written. Many of the
debug printouts indicate the current method name; they do so
by using bash's ${FUNCNAME[0]} variable. This variable is
different in zsh. To obtain the current method name in zsh
we must use ${funcstack[1]}.
This commit adds the proper sed modification to convert from
bash to zsh.
Signed-off-by: Marc Khouzam <marc.khouzam@ville.montreal.qc.ca>
6 years ago
Joe Lanford
a9c10fe104
pkg/chartutil: fix SaveDir for nested templates directories
...
Signed-off-by: Joe Lanford <joe.lanford@gmail.com>
6 years ago
Matt Butcher
367b6fc121
chore: Update sprig to 2.19.0 ( #5390 )
...
Update to the latest Sprig version, which is a reversion of some of
the functions added in 2.18.
Signed-off-by: Matt Butcher <matt.butcher@microsoft.com>
6 years ago
Matthew Fisher
745e772d64
Merge pull request #5092 from jlegrone/feature/delete-policy
...
feat(resource-policy): delete manifests when policy value is delete
6 years ago
Matthew Fisher
2846564cfe
Merge pull request #5416 from bacongobbler/disable-non-master-branhces
...
disable AppVeyor for branches other than master
6 years ago
Matthew Fisher
29264c5765
disable AppVeyor for branches other than master
...
This should disable AppVeyor from running against dev-v3 PRs.
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
6 years ago
Matthew Fisher
3c86f112e2
restore klog flags ( #5411 )
...
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
6 years ago
Martin Hickey
ea1bd7e163
Update dependency build doc to improve understanding ( #5379 )
...
Signed-off-by: Martin Hickey <martin.hickey@ie.ibm.com>
6 years ago
Patrick Decat
7da53d6e70
Refactor helm init command for reuse, allowing other programs to initialize local helm home directory without shelling out to the helm binary
...
Signed-off-by: Patrick Decat <pdecat@gmail.com>
6 years ago
Marc Khouzam
c94c00915f
Fix #5046 compatible with MacOS ( #5406 )
...
Signed-off-by: Marc Khouzam <marc.khouzam@ville.montreal.qc.ca>
6 years ago
anton
9689b02321
Add --max-history tip and to the quickstart helm init docs ( #5328 )
...
Signed-off-by: 0verc1ocker <anton.ouzounov@gmail.com>
6 years ago
Jacob LeGrone
e06c605b88
docs(resource-policy): explain "delete" policy type
...
Signed-off-by: Jacob LeGrone <git@jacob.work>
6 years ago
Jacob LeGrone
ce4c3f51ad
test(resource-policy): verify behavior of non-standard policy types
...
Signed-off-by: Jacob LeGrone <git@jacob.work>
6 years ago
Jacob LeGrone
55fbed95d5
feat(resource-policy): delete manifests when policy value is delete
...
Signed-off-by: Jacob LeGrone <git@jacob.work>
6 years ago
Nguyen Van Duc
33589472cf
Add .gitignore files for Eclipse ( #5368 )
...
Signed-off-by: vanduc95 <ducnv@vn.fujitsu.com>
6 years ago
Nguyen Quang Huy
63c970c5ce
Fix some typos ( #5352 )
...
Correct some words spelling for reading more easily.
Signed-off-by: Nguyen Quang Huy <huynq0911@gmail.com>
Co-Authored-By: Nguyen Van Trung <trungnvfet@outlook.com>
6 years ago
Nguyen Hai Truong
42e424bb3b
Insert *~ when using emacs in .gitignore ( #5366 )
...
Ignore temporary files *~ when editting source codes with
emacs.
Signed-off-by: Nguyen Hai Truong <truongnh@vn.fujitsu.com>
6 years ago
Nguyen Hai Truong
cdc09e54bc
Ignore Unix swap files `*.swp` in .gitignore ( #5364 )
...
Co-Authored-By: Dao Cong Tien tiendc@vn.fujitsu.com
Signed-off-by: Nguyen Hai Truong <truongnh@vn.fujitsu.com>
6 years ago