├── CronJob.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── _config.yml ├── docs └── imgs │ ├── architecture.png │ ├── logo.png │ ├── sample_run.png │ ├── sample_run_1.png │ └── sample_run_3.png ├── objects ├── .gitignore ├── cluster.py ├── conf │ ├── admission-controllers │ ├── kube-apiserver │ ├── kube-controller-manager │ └── kube-scheduler ├── control_plane.py ├── crds.py ├── daemonsets.py ├── deployments.py ├── images.py ├── ingress.py ├── jobs.py ├── modules │ ├── __init__.py │ ├── __init__.pyc │ ├── get_cm.py │ ├── get_crds.py │ ├── get_deploy.py │ ├── get_ds.py │ ├── get_ingress.py │ ├── get_jobs.py │ ├── get_nodes.py │ ├── get_ns.py │ ├── get_pods.py │ ├── get_rbac.py │ ├── get_sts.py │ ├── get_svc.py │ ├── get_svc_acc.py │ ├── load_kube_config.py │ ├── logging.py │ ├── main.py │ ├── message.py │ ├── output.py │ ├── output.pyc │ └── process.py ├── namespace.py ├── networks.py ├── nodes.py ├── pods.py ├── rbac.py ├── serviceaccounts.py ├── services.py ├── statefulsets.py └── test.py └── requirements.txt /CronJob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/CronJob.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/_config.yml -------------------------------------------------------------------------------- /docs/imgs/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/docs/imgs/architecture.png -------------------------------------------------------------------------------- /docs/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/docs/imgs/logo.png -------------------------------------------------------------------------------- /docs/imgs/sample_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/docs/imgs/sample_run.png -------------------------------------------------------------------------------- /docs/imgs/sample_run_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/docs/imgs/sample_run_1.png -------------------------------------------------------------------------------- /docs/imgs/sample_run_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/docs/imgs/sample_run_3.png -------------------------------------------------------------------------------- /objects/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/.gitignore -------------------------------------------------------------------------------- /objects/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/cluster.py -------------------------------------------------------------------------------- /objects/conf/admission-controllers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/conf/admission-controllers -------------------------------------------------------------------------------- /objects/conf/kube-apiserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/conf/kube-apiserver -------------------------------------------------------------------------------- /objects/conf/kube-controller-manager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/conf/kube-controller-manager -------------------------------------------------------------------------------- /objects/conf/kube-scheduler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/conf/kube-scheduler -------------------------------------------------------------------------------- /objects/control_plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/control_plane.py -------------------------------------------------------------------------------- /objects/crds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/crds.py -------------------------------------------------------------------------------- /objects/daemonsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/daemonsets.py -------------------------------------------------------------------------------- /objects/deployments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/deployments.py -------------------------------------------------------------------------------- /objects/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/images.py -------------------------------------------------------------------------------- /objects/ingress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/ingress.py -------------------------------------------------------------------------------- /objects/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/jobs.py -------------------------------------------------------------------------------- /objects/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /objects/modules/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/__init__.pyc -------------------------------------------------------------------------------- /objects/modules/get_cm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/get_cm.py -------------------------------------------------------------------------------- /objects/modules/get_crds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/get_crds.py -------------------------------------------------------------------------------- /objects/modules/get_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/get_deploy.py -------------------------------------------------------------------------------- /objects/modules/get_ds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/get_ds.py -------------------------------------------------------------------------------- /objects/modules/get_ingress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/get_ingress.py -------------------------------------------------------------------------------- /objects/modules/get_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/get_jobs.py -------------------------------------------------------------------------------- /objects/modules/get_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/get_nodes.py -------------------------------------------------------------------------------- /objects/modules/get_ns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/get_ns.py -------------------------------------------------------------------------------- /objects/modules/get_pods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/get_pods.py -------------------------------------------------------------------------------- /objects/modules/get_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/get_rbac.py -------------------------------------------------------------------------------- /objects/modules/get_sts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/get_sts.py -------------------------------------------------------------------------------- /objects/modules/get_svc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/get_svc.py -------------------------------------------------------------------------------- /objects/modules/get_svc_acc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/get_svc_acc.py -------------------------------------------------------------------------------- /objects/modules/load_kube_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/load_kube_config.py -------------------------------------------------------------------------------- /objects/modules/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/logging.py -------------------------------------------------------------------------------- /objects/modules/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/main.py -------------------------------------------------------------------------------- /objects/modules/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/message.py -------------------------------------------------------------------------------- /objects/modules/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/output.py -------------------------------------------------------------------------------- /objects/modules/output.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/output.pyc -------------------------------------------------------------------------------- /objects/modules/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/modules/process.py -------------------------------------------------------------------------------- /objects/namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/namespace.py -------------------------------------------------------------------------------- /objects/networks.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /objects/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/nodes.py -------------------------------------------------------------------------------- /objects/pods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/pods.py -------------------------------------------------------------------------------- /objects/rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/rbac.py -------------------------------------------------------------------------------- /objects/serviceaccounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/serviceaccounts.py -------------------------------------------------------------------------------- /objects/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/services.py -------------------------------------------------------------------------------- /objects/statefulsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/statefulsets.py -------------------------------------------------------------------------------- /objects/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/objects/test.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguyhasnoname/k8s-cluster-checker/HEAD/requirements.txt --------------------------------------------------------------------------------