Skip to content

Commit

Permalink
Merge pull request #597 from Praqma/new_helm
Browse files Browse the repository at this point in the history
chore: use the latest helm version
  • Loading branch information
luisdavim authored Apr 7, 2021
2 parents 5db0d7d + 36c6c38 commit 52f7490
Show file tree
Hide file tree
Showing 4 changed files with 106 additions and 62 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- run:
name: build docker images and push them to dockerhub
command: |
helm_versions=( "v3.4.0" "v3.3.4" )
helm_versions=( "v3.3.4" "v3.4.2" "3.5.3" )
TAG=$(git describe --abbrev=0 --tags)
docker login -u $DOCKER_USER -p $DOCKER_PASS
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG GO_VERSION="1.15.2"
ARG ALPINE_VERSION="3.12"
ARG GLOBAL_KUBE_VERSION="v1.19.0"
ARG GLOBAL_HELM_VERSION="v3.3.4"
ARG GLOBAL_HELM_VERSION="v3.5.3"
ARG GLOBAL_HELM_DIFF_VERSION="v3.1.3"
ARG GLOBAL_SOPS_VERSION="v3.7.0"

Expand Down
29 changes: 14 additions & 15 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,28 @@ module github.com/Praqma/helmsman
go 1.13

require (
cloud.google.com/go v0.75.0 // indirect
cloud.google.com/go/storage v1.12.0
cloud.google.com/go/storage v1.14.0
github.com/Azure/azure-pipeline-go v0.2.3
github.com/Azure/azure-storage-blob-go v0.12.0
github.com/Azure/go-autorest/autorest/adal v0.9.10 // indirect
github.com/Azure/azure-storage-blob-go v0.13.0
github.com/Azure/go-autorest/autorest/adal v0.9.13 // indirect
github.com/BurntSushi/toml v0.3.1
github.com/Masterminds/semver v1.5.0
github.com/apsdehal/go-logger v0.0.0-20190515211354-1abdf898e024
github.com/aws/aws-sdk-go v1.36.31
github.com/aws/aws-sdk-go v1.38.15
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/google/uuid v1.2.0 // indirect
github.com/imdario/mergo v0.3.11
github.com/imdario/mergo v0.3.12
github.com/joho/godotenv v1.3.0
github.com/kr/text v0.2.0 // indirect
github.com/logrusorgru/aurora v0.0.0-20191116043053-66b7ad493a23
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect
golang.org/x/mod v0.4.1 // indirect
golang.org/x/net v0.0.0-20210119194325-5f4716e94777
golang.org/x/oauth2 v0.0.0-20210113205817-d3ed898aa8a3 // indirect
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect
golang.org/x/text v0.3.5 // indirect
golang.org/x/tools v0.1.0 // indirect
google.golang.org/genproto v0.0.0-20210122163508-8081c04a3579 // indirect
google.golang.org/grpc v1.35.0 // indirect
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 // indirect
golang.org/x/mod v0.4.2 // indirect
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4
golang.org/x/text v0.3.6 // indirect
google.golang.org/api v0.44.0 // indirect
google.golang.org/genproto v0.0.0-20210406143921-e86de6bf7a46 // indirect
google.golang.org/grpc v1.37.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.4.0
)
Loading

0 comments on commit 52f7490

Please sign in to comment.