├── .github └── workflows │ └── github-release.yaml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── cmd └── root.go ├── go.mod ├── go.sum ├── internal ├── dependencies │ └── dependencies.go ├── log │ └── log.go └── values │ └── values.go ├── logo └── helm-spray_150x150.png ├── main.go ├── pkg ├── helm │ └── helm.go ├── helmspray │ └── helmspray.go ├── kubectl │ └── kubectl.go └── util │ └── util.go ├── plugin.yaml └── scripts └── install_plugin.sh /.github/workflows/github-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/.github/workflows/github-release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | .idea/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/README.md -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/cmd/root.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/go.sum -------------------------------------------------------------------------------- /internal/dependencies/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/internal/dependencies/dependencies.go -------------------------------------------------------------------------------- /internal/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/internal/log/log.go -------------------------------------------------------------------------------- /internal/values/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/internal/values/values.go -------------------------------------------------------------------------------- /logo/helm-spray_150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/logo/helm-spray_150x150.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/main.go -------------------------------------------------------------------------------- /pkg/helm/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/pkg/helm/helm.go -------------------------------------------------------------------------------- /pkg/helmspray/helmspray.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/pkg/helmspray/helmspray.go -------------------------------------------------------------------------------- /pkg/kubectl/kubectl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/pkg/kubectl/kubectl.go -------------------------------------------------------------------------------- /pkg/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/pkg/util/util.go -------------------------------------------------------------------------------- /plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/plugin.yaml -------------------------------------------------------------------------------- /scripts/install_plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/helm-spray/HEAD/scripts/install_plugin.sh --------------------------------------------------------------------------------