Skip to content

Commit 0d38394

Browse files
authored
minor: upgrade helm from v2 -> v3
Merge pull request #30 from mooncamp/helmv3_upgrade
2 parents c3b70cf + acc7a9a commit 0d38394

File tree

5 files changed

+542
-53
lines changed

5 files changed

+542
-53
lines changed

go.mod

Lines changed: 25 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,29 @@
11
module realcloud.tech/pligos
22

33
require (
4-
github.com/BurntSushi/toml v0.3.1 // indirect
5-
github.com/Masterminds/semver v1.4.2 // indirect
6-
github.com/davecgh/go-spew v1.1.1 // indirect
7-
github.com/ghodss/yaml v1.0.0 // indirect
8-
github.com/gobwas/glob v0.2.3 // indirect
9-
github.com/golang/protobuf v1.2.0
10-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
11-
github.com/pmezard/go-difflib v1.0.0 // indirect
12-
github.com/spf13/cobra v0.0.3
13-
github.com/spf13/pflag v1.0.3 // indirect
14-
github.com/stretchr/testify v1.2.2
15-
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
16-
gopkg.in/yaml.v2 v2.2.2
17-
k8s.io/apimachinery v0.0.0-20181227073029-9c4c36654334 // indirect
18-
k8s.io/helm v2.12.1+incompatible
4+
github.com/spf13/cobra v0.0.5
5+
github.com/stretchr/testify v1.4.0
6+
gopkg.in/yaml.v2 v2.2.4
7+
helm.sh/helm/v3 v3.0.0
8+
)
9+
10+
go 1.13
11+
12+
replace (
13+
// github.com/Azure/go-autorest/autorest has different versions for the Go
14+
// modules than it does for releases on the repository. Note the correct
15+
// version when updating.
16+
github.com/Azure/go-autorest/autorest => github.com/Azure/go-autorest/autorest v0.9.0
17+
github.com/docker/docker => github.com/moby/moby v0.7.3-0.20190826074503-38ab9da00309
18+
19+
// Kubernetes imports github.com/miekg/dns at a newer version but it is used
20+
// by a package Helm does not need. Go modules resolves all packages rather
21+
// than just those in use (like Glide and dep do). This sets the version
22+
// to the one oras needs. If oras is updated the version should be updated
23+
// as well.
24+
github.com/miekg/dns => github.com/miekg/dns v0.0.0-20181005163659-0d29b283ac0f
25+
gopkg.in/inf.v0 v0.9.1 => github.com/go-inf/inf v0.9.1
26+
gopkg.in/square/go-jose.v2 v2.3.0 => github.com/square/go-jose v2.3.0+incompatible
27+
28+
rsc.io/letsencrypt => github.com/dmcgowan/letsencrypt v0.0.0-20160928181947-1847a81d2087
1929
)

0 commit comments

Comments
 (0)