A CLI tool to gather Kubernetes cluster information, including:
- All Kubernetes API versions
- Kubernetes cluster version
- Node count, OS version, CPU, and memory
- List of all Docker images in the cluster
pip install uv
uv pip install .Build the image:
docker build -t k8s-info .Run the CLI (mount your kubeconfig if running outside the cluster):
docker run --rm -v $HOME/.kube:/root/.kube k8s-infok8s-info [--log-level INFO|DEBUG|WARNING|ERROR|CRITICAL]MIT