Jerome Küttner
663a896f4a
Channel should remain open if there is still a routine that wants to write into it
...
Signed-off-by: Jerome Küttner <j.kuettner@mittwald.de>
(cherry picked from commit 9a492f8240
)
4 years ago
Jerome Küttner
95c03eecdb
Fix memory leak in upgrade action
...
fixes helm/helm#10439
Signed-off-by: Jerome Küttner <j.kuettner@mittwald.de>
(cherry picked from commit ad3d2cc8ef
)
4 years ago
dependabot[bot]
cf8b02d318
chore(deps): bump github.com/Masterminds/squirrel from 1.5.1 to 1.5.2
...
Bumps [github.com/Masterminds/squirrel](https://github.com/Masterminds/squirrel ) from 1.5.1 to 1.5.2.
- [Release notes](https://github.com/Masterminds/squirrel/releases )
- [Commits](https://github.com/Masterminds/squirrel/compare/v1.5.1...v1.5.2 )
---
updated-dependencies:
- dependency-name: github.com/Masterminds/squirrel
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit a840fb0940
)
4 years ago
dependabot[bot]
013632b2c5
chore(deps): bump github.com/Masterminds/squirrel from 1.5.0 to 1.5.1
...
Bumps [github.com/Masterminds/squirrel](https://github.com/Masterminds/squirrel ) from 1.5.0 to 1.5.1.
- [Release notes](https://github.com/Masterminds/squirrel/releases )
- [Commits](https://github.com/Masterminds/squirrel/compare/v1.5.0...v1.5.1 )
---
updated-dependencies:
- dependency-name: github.com/Masterminds/squirrel
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
4 years ago
dependabot[bot]
339681484d
chore(deps): bump github.com/gofrs/flock from 0.8.0 to 0.8.1
...
Bumps [github.com/gofrs/flock](https://github.com/gofrs/flock ) from 0.8.0 to 0.8.1.
- [Release notes](https://github.com/gofrs/flock/releases )
- [Commits](https://github.com/gofrs/flock/compare/v0.8.0...v0.8.1 )
---
updated-dependencies:
- dependency-name: github.com/gofrs/flock
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 46a643fff4
)
4 years ago
Matt Farina
d5bd91cb91
Updating to Kubernetes 1.22.4 packages
...
Signed-off-by: Matt Farina <matt.farina@suse.com>
(cherry picked from commit c2da47e22b
)
4 years ago
Matt Farina
bb7f8b2b40
Fix specifying of Kubernetes version from build scripts
...
This bug came about because of three issues that this change
corrects:
- The CI scripts run on a pull request did not test building
Helm. This means that a failure to set a variable using LDFLAGS
had no opportunity to be caught.
- #8608 provided a means to match the k8s version used in linting
and chartutil with the version of the package we pull in. With
one problem. It attempts to set a const as if it were a string.
This is ignored and everyone missed it.
- #10325 moved those constants to vars so it could be set. This
looked good and passed tests but missed that you can't set an
int as if it were a string. See first bullet.
This change fixes this by moved the internal representation to
be a string. These are internal variables not exposed in the public
API which makes this change non-breaking to the API.
Closes #10367
Signed-off-by: Matt Farina <matt.farina@suse.com>
(cherry picked from commit 7838fb769d
)
4 years ago
Sverre Boschman
7e750ff4e9
allow ldflags to overwrite k8s version
...
Signed-off-by: Sverre Boschman <1142569+sboschman@users.noreply.github.com>
(cherry picked from commit 81a373ead5
)
4 years ago
Martin Hickey
dfb24521ac
Use buffered channel for signal notification
...
Refer to https://pkg.go.dev/os/signal#Notify for more details.
Signed-off-by: Martin Hickey <martin.hickey@ie.ibm.com>
(cherry picked from commit ea1b1f5a07
)
4 years ago
dependabot[bot]
1d11fcb5d3
Bump github.com/containerd/containerd from 1.5.4 to 1.5.7
...
Bumps [github.com/containerd/containerd](https://github.com/containerd/containerd ) from 1.5.4 to 1.5.7.
- [Release notes](https://github.com/containerd/containerd/releases )
- [Changelog](https://github.com/containerd/containerd/blob/main/RELEASES.md )
- [Commits](https://github.com/containerd/containerd/compare/v1.5.4...v1.5.7 )
---
updated-dependencies:
- dependency-name: github.com/containerd/containerd
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit f9bd8e93f2
)
4 years ago
LochanRn
52fbd4e2dc
changes to support any mediatype for layers on download
...
Signed-off-by: LochanRn <rajanaga_ra@srmuniv.edu.in>
(cherry picked from commit 9e29f1619b
)
4 years ago
Alexey Igrychev
2aacc5f07a
docs: fix typo Charts.yaml
...
Signed-off-by: Alexey Igrychev <alexey.igrychev@flant.com>
(cherry picked from commit 5753f61ae3
)
4 years ago
Fabian Jucker
96cdab4b59
actually skip unverifiable files
...
Signed-off-by: Fabian Jucker <fabianju@gmx.ch>
(cherry picked from commit 6f0064d61b
)
4 years ago
Kai Takac
57ecc256a0
Fix default registry config path of oci protocol provider
...
Signed-off-by: Kai Takac <kai.takac@gmail.com>
(cherry picked from commit 52cbc2f49c
)
4 years ago
Matthew Fisher
eeac83883c
fix tarFromLocalDir saving file dependencies in dest path
...
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
(cherry picked from commit d2dd32470b
)
4 years ago
Matt Farina
4a7c306aa9
Fixing issue with non-existant .Template when using tpl function
...
This is a regression accidently introduced in #9957 .
A delete call had been used on the Template key of vals. This caused
a condition where Template was not available when rendering via tpl.
The delete happened after ExecuteTemplate so the issue is surpsising.
It may possibly be a race condition. Existing tests did not catch it.
I tried to create a test that directly tested the issue and was
unable to replicate the error seen with real charts. This leads me
to believe it is a race condition in the underlying Go template
package.
The delete call was not there before #9957 . It should be safe to
remove and keep that information.
Closes #10082
Signed-off-by: Matt Farina <matt.farina@suse.com>
(cherry picked from commit f895948ae2
)
4 years ago
Matt Farina
548fae169a
bump version to 3.7
...
Signed-off-by: Matt Farina <matt.farina@suse.com>
4 years ago
Matt Farina
accf82ba1c
Merge pull request #9180 from Moser-ss/feature-handle-SIGINT
...
Handle SIGTERMs during helm upgrade and helm install
4 years ago
Matt Farina
2062a59566
Merge pull request #9702 from mikeshng/uninstall-wait
...
feat: add optional boolean '--wait' flag to 'uninstall' command.
4 years ago
Matt Farina
601bed2142
Merge pull request #9782 from bloodorangeio/hip-6
...
Implement changes proposed in HIP 6: OCI Support
4 years ago
Josh Dolitsky
caa97158d0
Revert moving registry actions back to pkg/
...
Signed-off-by: Josh Dolitsky <josh@dolit.ski>
4 years ago
Josh Dolitsky
bf9c9b45a8
Merge branch 'main' of github.com:helm/helm into hip-6
...
Signed-off-by: Josh Dolitsky <josh@dolit.ski>
4 years ago
Martin Hickey
c3ad0c7242
Merge pull request #9333 from bgutjahr/fix-9332
...
Fix 9332
4 years ago
Josh Dolitsky
77750962d5
Move registry actions back to pkg/
...
Signed-off-by: Josh Dolitsky <josh@dolit.ski>
4 years ago
Josh Dolitsky
336c7862e5
Merge branch 'main' of github.com:helm/helm into hip-6
...
Signed-off-by: Josh Dolitsky <josh@dolit.ski>
4 years ago
Matt Farina
2ab0d0a89f
Merge pull request #10008 from yxxhero/fix_HELM_PLUGINS_behavior_another_way
...
Fix helm plugins behavior another way
4 years ago
Matt Farina
387b0b74d8
Merge pull request #9822 from sathieu/fix_helm_dep_build_encoded_url
...
Fix encoded path for 'helm dependency build'
4 years ago
Martin Hickey
99b029b6ca
Merge pull request #10076 from azanar/patch-1
...
Fix HELM_DRIVER docs for sql option
4 years ago
Ed Carrel
bc1fefa9f3
Fix HELM_DRIVER docs for sql option
...
Option that works is `sql`, not `postgres`.
Probably not a commonly used value, since no one has caught this until now.
Signed-off-by: Ed Carrel <edward@carrel.org>
4 years ago
Mike Ng
75fe8883cc
Rename newly introduced interface to InterfaceExt
...
Signed-off-by: Mike Ng <ming@redhat.com>
4 years ago
Mathieu Parent
58018d1210
Fix encoded path for 'helm dependency build'
...
Signed-off-by: Mathieu Parent <math.parent@gmail.com>
4 years ago
Stephane Moser
101370af3d
Wrap error
...
To make the install comand consistent with upgrade comand when handling errors
Signed-off-by: Stephane Moser <moser.sts@gmail.com>
4 years ago
Mike Ng
d51a61f9ab
Introduce a new interface for WaitForDelete() to avoid breaking backwards compatibility
...
Signed-off-by: Mike Ng <ming@redhat.com>
4 years ago
Josh Dolitsky
0121f6a328
Merge branch 'main' of github.com:helm/helm into hip-6
...
Signed-off-by: Josh Dolitsky <josh@dolit.ski>
4 years ago
Mike Ng
655bdcd2fd
feat: add optional boolean '--wait' flag to 'uninstall' command.
...
If set, 'uninstall' command will wait until all the resources are deleted before returning.
It will wait for as long as --timeout
closes #2378
Signed-off-by: Mike Ng <ming@redhat.com>
4 years ago
Matt Farina
a9c957d35b
Merge pull request #10064 from mattfarina/fix-10058
...
Fixing issue where helm show all fails to show crds when no readme
4 years ago
Bernd Gutjahr
5cf9735a9d
improved coalesce readability by getting rid of continue statements
...
Signed-off-by: Bernd Gutjahr <bernd.gutjahr@microfocus.com>
4 years ago
Bernd Gutjahr
1740e7f89b
enhanced coelesce_test with some more test cases
...
Signed-off-by: Bernd Gutjahr <bernd.gutjahr@microfocus.com>
4 years ago
Matt Farina
dfec34e2de
Merge pull request #10063 from mattfarina/bump-k8s-0.22
...
Updating to Kubernetes 1.22 packages
4 years ago
Matt Farina
0ff53945bf
Fixing issue where helm show all fails to show crds when no readme
...
Closes #10058
Signed-off-by: Matt Farina <matt.farina@suse.com>
4 years ago
Matt Farina
95276d89a6
Updating to Kubernetes 1.22 packages
...
Signed-off-by: Matt Farina <matt.farina@suse.com>
4 years ago
Matt Farina
c635f66103
Merge pull request #9957 from vflaux/feat/subcharts-scope
...
feat(pkg/engine): expose subcharts scope in parent
4 years ago
Matt Farina
ac80a5eec9
Merge branch 'main' into feat/subcharts-scope
4 years ago
Matt Farina
2de6f9d424
Merge pull request #9993 from Ka0o0/make-isroot-available-to-template
...
Make Chart's IsRoot available to templates
4 years ago
Matt Farina
f509bc6891
Merge pull request #10047 from lsowen/feature-10042
...
Fix SIGSEGV when job.Spec.Completions is nil
4 years ago
Matt Farina
f1ef1020e2
Merge pull request #10017 from corhere/fix/9981-fail-message-with-newlines
...
fix(engine): parse fail messages with newlines
4 years ago
Matt Farina
9443a7ead4
Merge pull request #10033 from avorima/show-crds-command
...
Implement show crds subcommand
4 years ago
Matthew Fisher
c7502671ef
Merge pull request #9934 from jayonlau/clean_up
...
Clean up extra spaces
4 years ago
Kai Takac
8fcaf7b85c
Add Chart IsRoot test
...
Signed-off-by: Kai Takac <kai.takac@gmail.com>
4 years ago
Kai Takac
06ae6f933a
Make Chart's IsRoot available to templates
...
Signed-off-by: Kai Takac <kai.takac@gmail.com>
4 years ago