Skip to content

Commit

Permalink
feat: to support helm below version 3
Browse files Browse the repository at this point in the history
  • Loading branch information
C123R committed Apr 10, 2020
1 parent c9b3126 commit 4b79cab
Show file tree
Hide file tree
Showing 25 changed files with 46 additions and 657 deletions.
18 changes: 9 additions & 9 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ builds:
goarch:
- amd64
- arm64
archive:
format: tar.gz
files:
- README.md
- LICENSE
- plugin.yaml
- scripts/install_plugin.sh
- scripts/helm-blob.sh
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}_{{ .Tag }}"
archives:
- format: tar.gz
files:
- README.md
- LICENSE
- plugin.yaml
- scripts/install-plugin.sh
- scripts/proxy.sh
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}_{{ .Tag }}"
checksum:
name_template: "checksums.txt"
snapshot:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# helm-blob [![Build Status](https://travis-ci.org/C123R/helm-blob.svg?branch=master)](https://travis-ci.org/C123R/helm-blob)
# helm-blob [![Build Status](https://travis-ci.com/C123R/helm-blob.svg?token=9FxxpxQR16mxxejVyCbA&branch=master)](https://travis-ci.com/C123R/helm-blob)

`helm-blob` plugin allows you to manage helm repositories on the blob storage like Azure Blob, GCS, S3, etc.

Expand Down
22 changes: 0 additions & 22 deletions data/mychart/.helmignore

This file was deleted.

21 changes: 0 additions & 21 deletions data/mychart/Chart.yaml

This file was deleted.

21 changes: 0 additions & 21 deletions data/mychart/templates/NOTES.txt

This file was deleted.

63 changes: 0 additions & 63 deletions data/mychart/templates/_helpers.tpl

This file was deleted.

55 changes: 0 additions & 55 deletions data/mychart/templates/deployment.yaml

This file was deleted.

41 changes: 0 additions & 41 deletions data/mychart/templates/ingress.yaml

This file was deleted.

15 changes: 0 additions & 15 deletions data/mychart/templates/service.yaml

This file was deleted.

8 changes: 0 additions & 8 deletions data/mychart/templates/serviceaccount.yaml

This file was deleted.

15 changes: 0 additions & 15 deletions data/mychart/templates/tests/test-connection.yaml

This file was deleted.

66 changes: 0 additions & 66 deletions data/mychart/values.yaml

This file was deleted.

10 changes: 9 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,21 @@ go 1.13

require (
github.com/Azure/go-autorest/autorest/azure/auth v0.4.2 // indirect
github.com/Masterminds/semver v1.5.0 // indirect
github.com/aws/aws-sdk-go v1.20.6 // indirect
github.com/cyphar/filepath-securejoin v0.2.2 // indirect
github.com/gobwas/glob v0.2.3 // indirect
github.com/google/go-cmp v0.4.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/spf13/cobra v0.0.7
gocloud.dev v0.19.0
golang.org/x/crypto v0.0.0-20200128174031-69ecbb4d6d5d // indirect
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b // indirect
golang.org/x/sys v0.0.0-20191022100944-742c48ecaeb7 // indirect
google.golang.org/grpc v1.27.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
helm.sh/helm/v3 v3.1.0
k8s.io/client-go v0.17.2 // indirect
k8s.io/helm v2.16.5+incompatible
sigs.k8s.io/yaml v1.2.0
)

Expand Down
Loading

0 comments on commit 4b79cab

Please sign in to comment.