Brice Rising
0c7f203c6d
Removed unused methods from fs package
...
The fs package tests are going to be a lot of work to get working without the internal test package used by golang/dep, so I removed all of the unused ones by this project to make the work easier.
Signed-off-by: Brice Rising <brice.rising@slalom.com>
(cherry picked from commit 51dbd7c1a6 )
6 years ago
Brice Rising
c41037d901
Fix rename for helm dep upgrade
...
helm dependency upgrade wasn't working on certain file system because it assumes that os.rename is available. Since rename isn't available for subfolders in docker containers, I ripped a fallback rename strategy from dep (5b1fe9e6d8/internal/fs/fs.go (L103-L118) ) that works in docker.
Signed-off-by: Brice Rising <brice.rising@slalom.com>
(cherry picked from commit 94d87ef95d )
6 years ago
Matt Farina
e13bf2345f
bump version to v2.16.0-rc.1
...
Signed-off-by: Matt Farina <matt@mattfarina.com>
6 years ago
Matt Farina
77ca445c28
Merge pull request #6780 from mszostok/fix-search-repo-v2
...
fix(repo/search): fix helm repo search command to display proper versions
6 years ago
Matt Farina
5602f84f11
Merge pull request #6823 from mattfarina/2sa
...
Fix error when loading irregular files
6 years ago
Matt Farina
a4f46d7a38
Fix error when loading irregular files
...
Signed-off-by: Matt Farina <matt@mattfarina.com>
6 years ago
Adam Reese
d7d0427b0b
bump protobuf to match kubernetes
...
Signed-off-by: Adam Reese <adam@reese.io>
6 years ago
Adam Reese
23c82fc3eb
ref(glide.yaml): kubernetes 1.16.2
...
Signed-off-by: Adam Reese <adam@reese.io>
6 years ago
Taylor Thomas
93e4697f4a
fix(wait): Removes ingress checks
...
Closes #6751
After doing some more digging, I found out that updating the status
of an `Ingress` object is completely optional. Because of this, Helm
cannot support ingresses with the `--wait` flag because there is no
standard way to identify that they are ready
Signed-off-by: Taylor Thomas <taylor.thomas@microsoft.com>
6 years ago
Mateusz Szostok
71fa47f576
fix(repo/search): fix helm repo search command to display proper versions
...
Introduce the `--devel` flag for `helm repo search` command.
`helm repo search` - searches only for stable releases, prerelease versions will be skip
`helm repo search --devel` - searches for releases and prereleases (alpha, beta, and release candidate releases)
`helm repo search --version 1.0.0 - searches for release in version 1.0.0
Signed-off-by: Mateusz Szostok <szostok.mateusz@gmail.com>
6 years ago
Matthew Fisher
d8964037f7
Merge pull request #6727 from bacongobbler/backport-6702
...
fix(sympath): walk symbolic links one once
6 years ago
Oleg Sidorov
4cddc82c0b
Reverted changes introduced in #6010
...
This commit reverts changes introduced in #6010 due to a massive
regression reported in #6708 . An attempt to fix the problem in
https://github.com/helm/helm/pull/6709 seems to be unreasonably clumzy
and hacky, therefore reverting the offensive change seems to be the most
pragmatic solution.
This reverts commits:
* 70cd32c4ce .
* 9014bd9c50 .
Signed-off-by: Oleg Sidorov <me@whitebox.io>
6 years ago
Matthew Fisher
8489290300
fix(sympath): walk symbolic links one once
...
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
6 years ago
Matthew Fisher
33bb88851d
fix(kube): fix race condition
...
.Get() calls perform() on a list of infos, populating two shared maps. perform() now concurrently calls the ResourceActorFunc concurrently based on GVK, causing a data race condition in .Get()
This fixes that condition by locking the function to ensure these functions run serially for Helm 2 to fix the data race condition. This has since been optimized in Helm 3 so it's no longer an issue.
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
6 years ago
Matthew Fisher
7afbddfba2
bump version to v2.15
...
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
6 years ago
Matthew Fisher
14841258e0
Merge pull request #6590 from hickeyma/refactor-chart-create
...
Update Ingress API group in scaffold chart
6 years ago
Matthew Fisher
024f168bdf
Merge pull request #6612 from bacongobbler/rebase-6167
...
feat(test): add `--logs` to `helm test`
6 years ago
Matthew Fisher
9b9dcebea8
fix(kube): watch events from a matching pod
...
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
6 years ago
Guangming Wang
ecf9afbe06
fix file mode,it should be octal expressed
...
Signed-off-by: Guangming Wang <guangming.wang@daocloud.io>
6 years ago
Martin Hickey
146f4315d3
Update Ingress API group in scaffold chart
...
Signed-off-by: Martin Hickey <martin.hickey@ie.ibm.com>
6 years ago
Karuppiah Natarajan
519ccac294
fix repo url being decoded while downloading repo index ( #6060 )
...
Signed-off-by: Karuppiah Natarajan <karuppiah7890@gmail.com>
6 years ago
Matthew Fisher
ca7a719c96
rebase from master, regenerate proto files
...
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
6 years ago
Jeff Knurek
ef5d4e652c
change GetPodLogs to return io.Reader instead of string
...
well, more specifically returns an io.ReadCloser (giving the consumer more capabilities)
Signed-off-by: Jeff Knurek <j.knurek@travelaudience.com>
6 years ago
Jeff Knurek
7f2e0c535c
return error is client not set
...
Signed-off-by: Jeff Knurek <j.knurek@travelaudience.com>
6 years ago
Jeff Knurek
a2e8b188c2
TEST: add some rudimentary test code for helm test logs
...
Signed-off-by: Jeff Knurek <j.knurek@travelaudience.com>
6 years ago
Jeff Knurek
6529abe85f
TEST: cleanup code
...
Signed-off-by: Jeff Knurek <j.knurek@travelaudience.com>
6 years ago
Jeff Knurek
b94608388e
TEST: add option to dump logs during helm test
...
Signed-off-by: Jeff Knurek <j.knurek@travelaudience.com>
6 years ago
Matthew Fisher
fb2cbb0019
Merge pull request #6578 from bacongobbler/fix-3442
...
fix(helm): Accept dependency in requirements.yaml from charts directory
7 years ago
Matthew Fisher
74653d3794
fix: return more information to the user
...
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
7 years ago
Matthew Fisher
a31d4ad43e
fix: use nonexistent rather than inexistent
...
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
7 years ago
Taylor Thomas
4e8063b103
Merge pull request #5177 from adshmh/5150-lint-development-version-flag
...
Allow lint command to parse pre-release charts
7 years ago
Taylor Thomas
730e8f3e27
Merge pull request #5392 from bnookala/add-template-api-versioning
...
Allow customization of API Versions when using Helm Template
7 years ago
Matthew Fisher
b6afc6bf46
Merge pull request #4985 from bkeroackdsc/client-accept-contexts
...
Helm client: add methods that accept contexts
7 years ago
Benjamen Keroack
545e2213be
helm client: add methods that accept contexts so callers can cancel long-running operations
...
Signed-off-by: Benjamen Keroack <benjamen@dollarshaveclub.com>
7 years ago
Bhargav Nookala
300aa76d8d
Allow customization of API Versions when using Helm Template with --api-versions or -a
...
Signed-off-by: Bhargav Nookala <nooknb@gmail.com>
7 years ago
Taylor Thomas
5437dd4d05
Merge pull request #5611 from cgetzen/cg/kube_create_goroutine
...
Performance: Batch kube API operations
7 years ago
Ting-Wai
ed8f17a889
Parameterize maximum number of tests pods to run in parallel ( #6078 )
...
Signed-off-by: Ting-Wai To <tingwai@bitgo.com>
7 years ago
Charlie Getzen
6b2f408f8e
Merge branch 'master' of https://github.com/kubernetes/helm into cg/kube_create_goroutine
7 years ago
Sebastien Plisson
99b8a0d0d7
Removed test requiring repository field to allow local chart dependency
...
Signed-off-by: Sebastien Plisson <sebastien.plisson@gmail.com>
7 years ago
Sebastien Plisson
e8ab69ccc6
missing test file
...
Signed-off-by: Sebastien Plisson <sebastien.plisson@gmail.com>
7 years ago
Sebastien Plisson
8537bb5c42
Added test cases for chart present under charts folder
...
Signed-off-by: Sebastien Plisson <sebastien.plisson@gmail.com>
7 years ago
Sebastien Plisson
21edd808b6
#3321 Accept dependency in requirements.yaml from charts directory.
...
Signed-off-by: Sebastien Plisson <sebastien.plisson@gmail.com>
7 years ago
Matthew Fisher
cf30db50f5
Merge pull request #5298 from jordansissel/issue/5296/error-hinting
...
Extra hint in the error when failing to open a chart file.
7 years ago
Matthew Fisher
51f5ae9873
Merge pull request #6577 from bacongobbler/fixup-6334
...
upgrade Go to 1.13.1
7 years ago
Matthew Fisher
caff38ffa1
fix(generator): fixup package comment linting error
...
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
7 years ago
Matthew Fisher
d8d56fe111
Merge pull request #5610 from adshmh/feat-5552-fix-root-folder-files-error
...
improve error message for content outside base dir
7 years ago
Charlie Getzen
02ccb33bdc
use WaitGroup instead of channels and counters
...
Signed-off-by: Charlie Getzen <charlie.getzen@procore.com>
7 years ago
Matthew Fisher
7fd770ca1b
Merge pull request #6274 from kensipe/env-test-fix
...
fixes resetting os env after test run
7 years ago
Matthew Fisher
59ea688813
Merge pull request #5428 from walkafwalka/fix/plugin-tar-extract-perms
...
Preserve file permissions from tarball during plugin install
7 years ago
Matt Farina
a55af70ea8
Merge branch 'master' into 5044-add-app-version-to-history
7 years ago