Li Zhijian
e97975d7ad
Makefile: check and use GOBIN environment variable first
...
'go get' will install binaries into GOBIN when it's set which is not
always same with GOPATH/bin
this commit can fix below errors:
~/workspace/k8s/helm$ go env | grep -e GOPATH -e GOBIN -e GOROO
GOBIN="/home/lizj/go/bin"
GOPATH="/home/lizj/gosrc"
GOROOT="/home/lizj/go"
~/workspace/k8s/helm$ make build-cross
(cd /; GO111MODULE=on go get -u github.com/mitchellh/gox)
go: github.com/mitchellh/gox upgrade => v1.0.1
go: github.com/hashicorp/go-version upgrade => v1.2.1
GO111MODULE=on CGO_ENABLED=0 /home/lizj/gosrc/bin/gox -parallel=3 -output="_dist/{{.OS}}-{{.Arch}}/helm" -osarch='darwin/amd64 linux/amd64 linux/386 linux/arm linux/arm64 linux/ppc64le linux/s390x windows/amd64' -tags '' -ldflags '-w -s -X helm.sh/helm/v3/internal/version.metadata=unreleased -X helm.sh/helm/v3/internal/version.gitCommit=59c77716ad61331da28c37e9430d5f6a3ab23fed -X helm.sh/helm/v3/internal/version.gitTreeState=dirty -extldflags "-static"' ./cmd/helm
bash: /home/lizj/gosrc/bin/gox: No such file or directory
Makefile:146: recipe for target 'build-cross' failed
make: *** [build-cross] Error 127
Signed-off-by: Li Zhijian <lizhijian@cn.fujitsu.com>
4 years ago
Matt Farina
c215782436
Merge pull request #8817 from helm/dependabot/go_modules/github.com/lib/pq-1.8.0
...
Bump github.com/lib/pq from 1.7.0 to 1.8.0
4 years ago
Matt Farina
e17f7026bd
Merge pull request #8818 from helm/dependabot/go_modules/github.com/gofrs/flock-0.8.0
...
Bump github.com/gofrs/flock from 0.7.1 to 0.8.0
4 years ago
dependabot[bot]
253a9500d7
Bump github.com/gofrs/flock from 0.7.1 to 0.8.0
...
Bumps [github.com/gofrs/flock](https://github.com/gofrs/flock ) from 0.7.1 to 0.8.0.
- [Release notes](https://github.com/gofrs/flock/releases )
- [Commits](https://github.com/gofrs/flock/compare/v0.7.1...v0.8.0 )
Signed-off-by: dependabot[bot] <support@github.com>
4 years ago
dependabot[bot]
a6e76cbbbe
Bump github.com/lib/pq from 1.7.0 to 1.8.0
...
Bumps [github.com/lib/pq](https://github.com/lib/pq ) from 1.7.0 to 1.8.0.
- [Release notes](https://github.com/lib/pq/releases )
- [Commits](https://github.com/lib/pq/compare/v1.7.0...v1.8.0 )
Signed-off-by: dependabot[bot] <support@github.com>
4 years ago
Matt Farina
593fec6868
Merge pull request #8807 from mattfarina/feat-8806
...
Adding support for k8s 1.19
4 years ago
Martin Hickey
4e0bd3483b
Merge pull request #8811 from Hellcatlk/golint
...
Fix wrong function's name in comment
4 years ago
zouyu
a167b3fc87
Fix wrong function's name in comment
...
Signed-off-by: zouyu <zouy.fnst@cn.fujitsu.com>
4 years ago
Matt Farina
b7c38c879a
Adding support for k8s 1.19
...
Closes #8806
Signed-off-by: Matt Farina <matt@mattfarina.com>
4 years ago
Matthew Fisher
b0fdb5461f
Merge pull request #8244 from carlpett/report-findcharturl-error
...
Report what cause finding chart to fail
4 years ago
Matthew Fisher
ecea7c6964
Merge pull request #8738 from zhijianli88/wildcard
...
fix incorrect wildcard expand
4 years ago
Matthew Fisher
29ef2bb7fd
Merge pull request #8763 from scottrigby/fix-release-notes-links
...
Update links to docs in release notes script
4 years ago
Matthew Fisher
be9403f159
Merge pull request #8787 from lemonli/fix/mod-file-goversion
...
Update go version to 1.14 in go.mod
4 years ago
Matt Farina
254fb8968c
Merge pull request #8791 from mattfarina/fix-8779
...
Fixing import package issue
4 years ago
Matt Farina
036832eba9
Fixing import package issue
...
When #8779 was merged it introduced an issue with windows builds,
which we do not test for in PR CI. This change fixes that problem.
Signed-off-by: Matt Farina <matt@mattfarina.com>
4 years ago
Matt Farina
0d4ea9fd41
Merge pull request #8782 from mattfarina/update-lgtm-process
...
Adding size labels pointer
4 years ago
Matthew Fisher
03a1e8e03c
Merge pull request #8779 from bacongobbler/use-warning
...
use warning function
4 years ago
lemonli
3baaace868
Update go version to 1.14 in go.mod
...
Signed-off-by: lemonli <liwenjun0323@gmail.com>
4 years ago
Matthew Fisher
92c4bda184
use warning function
...
This ensures warning messages are displayed on stderr rather than stdout.
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
4 years ago
Matt Farina
8b546e90a9
Adding size labels pointer
...
Add size of labels and number of reviewers is listed twice, pointing
the area with less detail to the one with more detail.
Signed-off-by: Matt Farina <matt@mattfarina.com>
4 years ago
Matt Farina
367277afc2
Merge pull request #8777 from mattfarina/fix-8771
...
Fixing issue with idempotent repo add
4 years ago
Matt Farina
baf5b76a95
Fixing issue with idempotent repo add
...
A security issue fixed in 3.3.2 caught repos with the same name
being added a second time and produced an error. This caused an
issue for tools, such as helmfile, that will add the same name
with the same configuration multiple times.
This fix checks that the configuration on the existing and new
repo are the same. If there is no change it notes it and exists
with a 0 exit code. If there is a change the existing error is
returned (for reverse compat). If --force-update is given the
user opts in to changing the config for the name.
Closes #8771
Signed-off-by: Matt Farina <matt@mattfarina.com>
4 years ago
Matthew Fisher
2ebe95a6ff
Merge pull request #8755 from bacongobbler/size-s
...
size/S and larger requiring 2 LGTMs
4 years ago
Sebastian Sdorra
467bd49bb0
support passing signing passphrase from file or stdin ( #8394 )
...
Signed-off-by: Sebastian Sdorra <sebastian.sdorra@cloudogu.com>
4 years ago
Matthew Fisher
1138def202
size/S and larger requiring 2 LGTMs
...
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
4 years ago
Matthew Fisher
2fdd0348a2
Merge pull request #8762 from bacongobbler/chartmuseum-index
...
fix: allow serverInfo field on index files
4 years ago
Scott Rigby
3eeeb0345d
Update docs links in release notes script
...
Signed-off-by: Scott Rigby <scott@r6by.com>
4 years ago
Matthew Fisher
f19acbdc94
fix: allow serverInfo field on index files
...
A recent change merged into Helm fixes a number of security issues related to parsing malformed index files. Unfortunately, it also broke the ability for users to load index files from chartmuseum, which adds a "server info" field to add additional metadata.
This commit adds that field so that index files from chartmuseum can be validated. Since Helm does not use this field for anything, the information is discarded and unused.
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
4 years ago
Adam Reese
5d5ef1d611
Merge pull request #8759 from adamreese/fix/go-build-tags
...
fix(cmd/helm): add build tags for architecture
4 years ago
Adam Reese
45d230fcc9
fix(cmd/helm): add build tags for architecture
...
Signed-off-by: Adam Reese <adam@reese.io>
4 years ago
Matthew Fisher
d9ef5ce8ba
Merge pull request from GHSA-c52f-pq47-2r9j
...
switched to stricter YAML parsing on plugin metadata files
4 years ago
Matthew Fisher
6eeec4a002
switched to stricter YAML parsing on plugin metadata files
...
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
4 years ago
Matt Butcher
809e2d999e
Merge pull request from GHSA-m54r-vrmv-hw33
...
Signed-off-by: Matt Butcher <matt.butcher@microsoft.com>
4 years ago
Matt Butcher
055dd41cbe
Merge pull request from GHSA-jm56-5h66-w453
...
Signed-off-by: Matt Butcher <matt.butcher@microsoft.com>
4 years ago
Matt Butcher
59d5b94d35
Merge pull request from GHSA-9vp5-m38w-j776
4 years ago
Matthew Fisher
aa5431ab71
Merge pull request #8751 from technosophos/fix/helm-create-overwrite
...
fixed bug that caused helm create to not overwrite modified files
4 years ago
Matthew Fisher
2a74204508
go fmt
...
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
4 years ago
Matthew Fisher
71ee2c23c8
Merge pull request #8754 from technosophos/fix/repo-add-force-update
...
replace --no-update with --force-update and invert default. BREAKING.
4 years ago
Matthew Fisher
84de24edc9
Merge pull request #8752 from technosophos/fix/better-http-plugin-checks
...
improve the HTTP detection for tar archives
4 years ago
Matt Farina
7953adb06c
Merge branch 'master' into fix/helm-create-overwrite
4 years ago
Matt Butcher
e2da16f514
improve the HTTP detection for tar archives
...
Signed-off-by: Matt Butcher <matt.butcher@microsoft.com>
4 years ago
Matt Farina
b5daf5a484
Merge pull request #8753 from technosophos/fix/dependency-status
...
handle case where dependency name collisions break dependency resolution
4 years ago
Matt Butcher
882eeac727
replace --no-update with --force-update and invert default. BREAKING.
...
Signed-off-by: Matt Butcher <matt.butcher@microsoft.com>
4 years ago
Matt Farina
11f75e420c
Merge pull request #8750 from technosophos/fix/helm-create-name
...
validate the name passed in during helm create
4 years ago
Matt Butcher
40b7800287
handle case where dependency name collisions break dependency resolution
...
Signed-off-by: Matt Butcher <matt.butcher@microsoft.com>
4 years ago
Matt Farina
d3b049759d
Merge pull request #8749 from technosophos/fix/validname-consolidation
...
refactor the release name validation to be consistent across Helm
4 years ago
Matt Farina
37b0d268b3
Merge pull request #8748 from technosophos/fix/check-kubeconfig
...
fix: check mode bits on kubeconfig file
4 years ago
Matt Butcher
106f1fb45c
fixed bug that caused helm create to not overwrite modified files
...
Signed-off-by: Matt Butcher <matt.butcher@microsoft.com>
4 years ago
Matt Butcher
ed5fba5142
refactor the release name validation to be consistent across Helm
...
Signed-off-by: Matt Butcher <matt.butcher@microsoft.com>
4 years ago
Matt Butcher
c4ef82be13
validate the name passed in during helm create
...
Signed-off-by: Matt Butcher <matt.butcher@microsoft.com>
4 years ago