├── .github └── CODEOWNERS ├── CHANGELOG.md ├── CONTRIBUTION.md ├── Dockerfile ├── LICENSE-2.0.txt ├── NOTICE ├── README.md ├── controller.go ├── go.mod ├── go.sum ├── helm ├── .helmignore ├── Chart.yaml ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── rbac.yaml │ └── secret.yaml └── values.yaml ├── helpers.go ├── main.go ├── shell-version-for-poc ├── Chart.yaml ├── README.md ├── collector.sh ├── templates │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── rbac.yaml │ └── secret.yaml └── values.yaml └── slack.go /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/CONTRIBUTION.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/LICENSE-2.0.txt -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/README.md -------------------------------------------------------------------------------- /controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/controller.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/go.sum -------------------------------------------------------------------------------- /helm/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/helm/.helmignore -------------------------------------------------------------------------------- /helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/helm/Chart.yaml -------------------------------------------------------------------------------- /helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/helm/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/helm/templates/rbac.yaml -------------------------------------------------------------------------------- /helm/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/helm/templates/secret.yaml -------------------------------------------------------------------------------- /helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/helm/values.yaml -------------------------------------------------------------------------------- /helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/helpers.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/main.go -------------------------------------------------------------------------------- /shell-version-for-poc/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/shell-version-for-poc/Chart.yaml -------------------------------------------------------------------------------- /shell-version-for-poc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/shell-version-for-poc/README.md -------------------------------------------------------------------------------- /shell-version-for-poc/collector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/shell-version-for-poc/collector.sh -------------------------------------------------------------------------------- /shell-version-for-poc/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/shell-version-for-poc/templates/_helpers.tpl -------------------------------------------------------------------------------- /shell-version-for-poc/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/shell-version-for-poc/templates/configmap.yaml -------------------------------------------------------------------------------- /shell-version-for-poc/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/shell-version-for-poc/templates/deployment.yaml -------------------------------------------------------------------------------- /shell-version-for-poc/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/shell-version-for-poc/templates/rbac.yaml -------------------------------------------------------------------------------- /shell-version-for-poc/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/shell-version-for-poc/templates/secret.yaml -------------------------------------------------------------------------------- /shell-version-for-poc/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/shell-version-for-poc/values.yaml -------------------------------------------------------------------------------- /slack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airwallex/k8s-pod-restart-info-collector/HEAD/slack.go --------------------------------------------------------------------------------