├── .gitmodules ├── .goreleaser.yaml ├── .krew.yaml ├── LICENSE ├── README.md ├── cmd └── kubectl-dumpy.go ├── docker ├── Dockerfile ├── dumpy_ASCII.txt └── dumpy_sniff.sh ├── dumpy.png ├── go.mod ├── go.sum ├── pkg ├── k8s │ ├── api.go │ ├── sniffer.go │ └── target.go ├── subcmd │ ├── capture.go │ ├── delete.go │ ├── dumpy.go │ ├── export.go │ ├── get.go │ ├── restart.go │ └── stop.go └── utils │ └── utils.go └── test ├── capture_args.bats ├── capture_errors.bats ├── capture_flags.bats ├── delete_errors.bats ├── export_args.bats ├── export_errors.bats ├── export_flags.bats ├── get_args.bats ├── get_errors.bats ├── get_flags.bats ├── manifest ├── daemonset_currNS.yml ├── daemonset_diffNS.yml ├── deploy_currNS.yml ├── deploy_diffNS.yml ├── pod_currNS.yml ├── pod_diffNS.yml ├── pvc.yml ├── replicaset_currNS.yml ├── replicaset_diffNS.yml ├── secret.yml ├── statefulset_currNS.yml └── statefulset_diffNS.yml ├── restart_args.bats ├── restart_errors.bats ├── restart_flags.bats ├── run_testsuit.sh ├── stop_args.bats ├── stop_errors.bats └── stop_flags.bats /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/.gitmodules -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /.krew.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/.krew.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/README.md -------------------------------------------------------------------------------- /cmd/kubectl-dumpy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/cmd/kubectl-dumpy.go -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/dumpy_ASCII.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/docker/dumpy_ASCII.txt -------------------------------------------------------------------------------- /docker/dumpy_sniff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/docker/dumpy_sniff.sh -------------------------------------------------------------------------------- /dumpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/dumpy.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/go.sum -------------------------------------------------------------------------------- /pkg/k8s/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/pkg/k8s/api.go -------------------------------------------------------------------------------- /pkg/k8s/sniffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/pkg/k8s/sniffer.go -------------------------------------------------------------------------------- /pkg/k8s/target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/pkg/k8s/target.go -------------------------------------------------------------------------------- /pkg/subcmd/capture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/pkg/subcmd/capture.go -------------------------------------------------------------------------------- /pkg/subcmd/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/pkg/subcmd/delete.go -------------------------------------------------------------------------------- /pkg/subcmd/dumpy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/pkg/subcmd/dumpy.go -------------------------------------------------------------------------------- /pkg/subcmd/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/pkg/subcmd/export.go -------------------------------------------------------------------------------- /pkg/subcmd/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/pkg/subcmd/get.go -------------------------------------------------------------------------------- /pkg/subcmd/restart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/pkg/subcmd/restart.go -------------------------------------------------------------------------------- /pkg/subcmd/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/pkg/subcmd/stop.go -------------------------------------------------------------------------------- /pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/pkg/utils/utils.go -------------------------------------------------------------------------------- /test/capture_args.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/capture_args.bats -------------------------------------------------------------------------------- /test/capture_errors.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/capture_errors.bats -------------------------------------------------------------------------------- /test/capture_flags.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/capture_flags.bats -------------------------------------------------------------------------------- /test/delete_errors.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/delete_errors.bats -------------------------------------------------------------------------------- /test/export_args.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/export_args.bats -------------------------------------------------------------------------------- /test/export_errors.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/export_errors.bats -------------------------------------------------------------------------------- /test/export_flags.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/export_flags.bats -------------------------------------------------------------------------------- /test/get_args.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/get_args.bats -------------------------------------------------------------------------------- /test/get_errors.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/get_errors.bats -------------------------------------------------------------------------------- /test/get_flags.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/get_flags.bats -------------------------------------------------------------------------------- /test/manifest/daemonset_currNS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/manifest/daemonset_currNS.yml -------------------------------------------------------------------------------- /test/manifest/daemonset_diffNS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/manifest/daemonset_diffNS.yml -------------------------------------------------------------------------------- /test/manifest/deploy_currNS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/manifest/deploy_currNS.yml -------------------------------------------------------------------------------- /test/manifest/deploy_diffNS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/manifest/deploy_diffNS.yml -------------------------------------------------------------------------------- /test/manifest/pod_currNS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/manifest/pod_currNS.yml -------------------------------------------------------------------------------- /test/manifest/pod_diffNS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/manifest/pod_diffNS.yml -------------------------------------------------------------------------------- /test/manifest/pvc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/manifest/pvc.yml -------------------------------------------------------------------------------- /test/manifest/replicaset_currNS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/manifest/replicaset_currNS.yml -------------------------------------------------------------------------------- /test/manifest/replicaset_diffNS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/manifest/replicaset_diffNS.yml -------------------------------------------------------------------------------- /test/manifest/secret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/manifest/secret.yml -------------------------------------------------------------------------------- /test/manifest/statefulset_currNS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/manifest/statefulset_currNS.yml -------------------------------------------------------------------------------- /test/manifest/statefulset_diffNS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/manifest/statefulset_diffNS.yml -------------------------------------------------------------------------------- /test/restart_args.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/restart_args.bats -------------------------------------------------------------------------------- /test/restart_errors.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/restart_errors.bats -------------------------------------------------------------------------------- /test/restart_flags.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/restart_flags.bats -------------------------------------------------------------------------------- /test/run_testsuit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/run_testsuit.sh -------------------------------------------------------------------------------- /test/stop_args.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/stop_args.bats -------------------------------------------------------------------------------- /test/stop_errors.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/stop_errors.bats -------------------------------------------------------------------------------- /test/stop_flags.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryTheSlap/dumpy/HEAD/test/stop_flags.bats --------------------------------------------------------------------------------