├── .github └── workflows │ └── go.yml ├── .gitignore ├── .goreleaser.yml ├── LICENSE ├── README.md ├── edit.go ├── go.mod ├── go.sum ├── install.sh ├── main.go ├── plugin.complete ├── plugin.yaml └── test └── foo ├── .helmignore ├── Chart.yaml ├── templates ├── NOTES.txt ├── _helpers.tpl ├── deployment.yaml ├── ingress.yaml ├── service.yaml └── tests │ └── test-connection.yaml └── values.yaml /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/README.md -------------------------------------------------------------------------------- /edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/edit.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/go.sum -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/install.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/main.go -------------------------------------------------------------------------------- /plugin.complete: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | $HELM_BIN list -a -q -m 0 4 | echo ":4" 5 | -------------------------------------------------------------------------------- /plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/plugin.yaml -------------------------------------------------------------------------------- /test/foo/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/test/foo/.helmignore -------------------------------------------------------------------------------- /test/foo/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/test/foo/Chart.yaml -------------------------------------------------------------------------------- /test/foo/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/test/foo/templates/NOTES.txt -------------------------------------------------------------------------------- /test/foo/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/test/foo/templates/_helpers.tpl -------------------------------------------------------------------------------- /test/foo/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/test/foo/templates/deployment.yaml -------------------------------------------------------------------------------- /test/foo/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/test/foo/templates/ingress.yaml -------------------------------------------------------------------------------- /test/foo/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/test/foo/templates/service.yaml -------------------------------------------------------------------------------- /test/foo/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/test/foo/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /test/foo/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstrzele/helm-edit/HEAD/test/foo/values.yaml --------------------------------------------------------------------------------