├── .drone.yml ├── .gitignore ├── Dockerfile ├── README.md ├── glide.yaml ├── helm ├── Chart.yaml ├── templates │ └── deployment.yaml ├── values-dev.yaml ├── values-prod.yaml ├── values-test.yaml └── values.yaml └── main.go /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptagr/pod-reaper/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | pod-reaper -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptagr/pod-reaper/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptagr/pod-reaper/HEAD/README.md -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptagr/pod-reaper/HEAD/glide.yaml -------------------------------------------------------------------------------- /helm/Chart.yaml: -------------------------------------------------------------------------------- 1 | name: pod-reaper 2 | version: 0.1 3 | -------------------------------------------------------------------------------- /helm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptagr/pod-reaper/HEAD/helm/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/values-dev.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helm/values-prod.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helm/values-test.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptagr/pod-reaper/HEAD/helm/values.yaml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptagr/pod-reaper/HEAD/main.go --------------------------------------------------------------------------------