├── .github └── workflows │ ├── build.yaml │ └── publish.yaml ├── .gitignore ├── .goreleaser.yaml ├── LICENSE ├── LICENSE.helm-edit ├── LICENSE.sample-cli-plugin ├── Makefile ├── README.md ├── cmd └── edit_status.go ├── go.mod ├── go.sum ├── krew ├── commit_krew_manifest.sh ├── edit-status.yaml.template └── prepare_krew_manifest.sh ├── main.go └── plugins └── edit-status.yaml /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.helm-edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/LICENSE.helm-edit -------------------------------------------------------------------------------- /LICENSE.sample-cli-plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/LICENSE.sample-cli-plugin -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/README.md -------------------------------------------------------------------------------- /cmd/edit_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/cmd/edit_status.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/go.sum -------------------------------------------------------------------------------- /krew/commit_krew_manifest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/krew/commit_krew_manifest.sh -------------------------------------------------------------------------------- /krew/edit-status.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/krew/edit-status.yaml.template -------------------------------------------------------------------------------- /krew/prepare_krew_manifest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/krew/prepare_krew_manifest.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/main.go -------------------------------------------------------------------------------- /plugins/edit-status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulucinar/kubectl-edit-status/HEAD/plugins/edit-status.yaml --------------------------------------------------------------------------------