├── .github └── workflows │ └── release.yml ├── .gitignore ├── .goreleaser.yml ├── .krew.yaml ├── LICENSE ├── README.md ├── cmd ├── disable_timeout.go ├── kubectl.go ├── lock.go ├── logging.go ├── root.go ├── set.go ├── set_timeout.go └── unlock.go ├── go.mod ├── go.sum ├── img └── demo.gif ├── logo ├── .DS_Store └── kube-lock.png ├── main.go └── plugins └── lock.yaml /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.krew.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/.krew.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/README.md -------------------------------------------------------------------------------- /cmd/disable_timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/cmd/disable_timeout.go -------------------------------------------------------------------------------- /cmd/kubectl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/cmd/kubectl.go -------------------------------------------------------------------------------- /cmd/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/cmd/lock.go -------------------------------------------------------------------------------- /cmd/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/cmd/logging.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/cmd/set.go -------------------------------------------------------------------------------- /cmd/set_timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/cmd/set_timeout.go -------------------------------------------------------------------------------- /cmd/unlock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/cmd/unlock.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/go.sum -------------------------------------------------------------------------------- /img/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/img/demo.gif -------------------------------------------------------------------------------- /logo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/logo/.DS_Store -------------------------------------------------------------------------------- /logo/kube-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/logo/kube-lock.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/main.go -------------------------------------------------------------------------------- /plugins/lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosInTheCRD/kube-lock/HEAD/plugins/lock.yaml --------------------------------------------------------------------------------