Skip to main content

Crawl a Kubernetes cluster and produce structured operational knowledge

Project description

kube2docs

CI PyPI License: MIT

Reverse-engineer a Kubernetes cluster: crawl every workload, discover what it does at runtime, build a dependency graph, and generate operational documentation.

Two-step pipeline:

  1. scan — crawls the cluster, execs into pods, builds a structured JSON knowledge base
  2. generate — turns that knowledge base into Markdown docs (uses an LLM)

Optimized for non-production clusters where you need to document what's running but can't rely on live traffic to map dependencies.

Install

pip install kube2docs

# From source
uv venv && uv pip install -e ".[dev]"

Quickstart

# Scan the cluster
kube2docs scan --output ./kb/

# Generate docs (pick any provider — see "AI providers" below)
export ANTHROPIC_API_KEY=sk-ant-...
kube2docs generate --input ./kb/ --output ./docs/ \
  --model claude-haiku-4-5 --recommendations

AI providers

generate and --agentic scan go through litellm, so any model it supports works. Pass the model string via --model, set the provider env var (or pass --api-key), and add --api-base for self-hosted endpoints (vLLM, LM Studio, LocalAI, non-default Ollama).

Provider Env var Example --model
Anthropic ANTHROPIC_API_KEY claude-haiku-4-5
OpenAI OPENAI_API_KEY gpt-4o-mini
OpenRouter OPENROUTER_API_KEY openrouter/moonshotai/kimi-k2.5
AWS Bedrock AWS credentials bedrock/anthropic.claude-3-5-sonnet-20241022-v2:0
Google Gemini GEMINI_API_KEY gemini/gemini-2.0-flash
Ollama (local) OLLAMA_API_BASE (if non-default) ollama/llama3.1
kube2docs generate --input ./kb/ --output ./docs/ \
  --model openai/my-local-model --api-base http://localhost:8000/v1

How scanning works

Scanning always starts with a read-only inventory via the Kubernetes API: every Deployment, StatefulSet, Service, ConfigMap, etc. is catalogued. Then for each workload, kube2docs picks one running pod and execs into it to discover runtime state — what processes are running, which ports are open, what config files exist, where outbound connections go.

You pick how that runtime discovery happens:

Mode Flag Cost Best for
Inventory only --depth survey Free Quick listing — no pod exec
Deterministic (default) Free Regulated envs, CI drift detection, nightly rescans
Agentic --agentic ~$0.003/workload Distroless containers, dependency discovery, initial exploration

Deterministic runs a fixed set of commands (ps, ss, cat known config paths) in every container and parses output with regex. Reproducible, data stays local.

Agentic hands the inventory data to an LLM, which iteratively chooses commands to exec based on what it learns from each step. Works on distroless containers (by reading image metadata when there's no shell), and discovers ~5x more dependencies in testing because it actually reads and understands config files. Non-deterministic; sends exec output (with secrets redacted) to the LLM provider.

# Preview (no LLM calls)
kube2docs scan --output ./kb/ --agentic --dry-run \
  --model openrouter/moonshotai/kimi-k2.5

# Run (any provider from the table above works)
kube2docs scan --output ./kb/ --agentic \
  --model openrouter/moonshotai/kimi-k2.5 --api-key $OPENROUTER_API_KEY

Output

The scan command writes to --output:

kb/
├── cluster-overview.json      # Cluster summary + dependency list
├── dependency-graph.json      # Edges between workloads (internal + external)
├── topology.mmd               # Mermaid diagram, auto-embedded in generated docs
├── services.json              # All K8s Services
├── nodes.json                 # Node info
├── events.json                # Recent cluster events (last 24h)
├── kube2docs-status.json       # Scan progress
└── <namespace>/
    ├── <workload>.profile.json     # Structured workload record
    └── <workload>.raw/             # Raw exec outputs, config files
        └── agentic/                # LLM conversation artifacts (if --agentic)

The JSON is the source of truth. Designed to be consumed by AI agents, RAG pipelines, or read directly.

What agentic scan won't do

Agentic mode runs LLM-chosen commands inside your pods. The safety filter blocks:

  • Writes (rm, chmod, chown, mv, sed -i, > /path)
  • Process control (kill, systemctl stop, shutdown)
  • Outbound network to non-localhost (prevents data exfiltration)
  • Cluster API access (kubectl, helm, service account token reads)
  • Package installation (apt/yum/apk/pip/npm install)

Reads are broad: cat, find, grep, ps, ss, strings, etc. — the LLM has whatever filesystem access the pod's user already has. Secret patterns (JWTs, AWS keys, PEM private keys, URI credentials) are detected and hashed before leaving the local process.

Important: agentic scan sends exec output to the LLM provider you configured. Use --agentic only on clusters where that's acceptable.

RBAC / Permissions

kube2docs needs read-only access to cluster resources plus pods/exec for runtime inspection. Here's a minimal ClusterRole:

apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
  name: kube2docs-reader
rules:
  - apiGroups: [""]
    resources: [namespaces, pods, services, configmaps, secrets, persistentvolumeclaims, events, nodes]
    verbs: [get, list]
  - apiGroups: [""]
    resources: [pods/exec]
    verbs: [create]
  - apiGroups: [apps]
    resources: [deployments, statefulsets, daemonsets]
    verbs: [get, list]
  - apiGroups: [batch]
    resources: [cronjobs, jobs]
    verbs: [get, list]
  - apiGroups: [networking.k8s.io]
    resources: [ingresses, networkpolicies]
    verbs: [get, list]
  - apiGroups: [autoscaling]
    resources: [horizontalpodautoscalers]
    verbs: [get, list]
  - apiGroups: [policy]
    resources: [poddisruptionbudgets]
    verbs: [get, list]

Bind it to a ServiceAccount or your user. Agentic mode (--agentic) uses the same pods/exec permission — no additional K8s access is needed.

Secret values are never stored: only key names are inventoried, and any secret patterns in exec output are hashed before being written to disk.

Incremental scanning

Re-running scan on the same --output directory skips unchanged workloads by comparing image digests and config versions. Use --force-rescan to override.

Documentation

See CLAUDE.md for architecture details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kube2docs-0.2.0.tar.gz (71.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kube2docs-0.2.0-py3-none-any.whl (67.6 kB view details)

Uploaded Python 3

File details

Details for the file kube2docs-0.2.0.tar.gz.

File metadata

  • Download URL: kube2docs-0.2.0.tar.gz
  • Upload date:
  • Size: 71.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for kube2docs-0.2.0.tar.gz
Algorithm Hash digest
SHA256 36e20da38568d3a0a0b5f883ce4b5d166bf8b115ad016ce8cdc5bf0265e33eeb
MD5 13cb3d2442e983aefd3d86b161d215c1
BLAKE2b-256 172a528845d55350cb8b323b7465dd4e7ee1a849273d2748c4c8aba8817a9287

See more details on using hashes here.

Provenance

The following attestation bundles were made for kube2docs-0.2.0.tar.gz:

Publisher: publish.yml on matt-szymczyk/kube2docs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file kube2docs-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: kube2docs-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 67.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for kube2docs-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 19f2b0b019b1eb16452f23a9420d4f8239de1e4de2aa7a998f9a066f5f67d143
MD5 09ed6160a722208e12cb0efc569ec218
BLAKE2b-256 20c9fe60c0637b4fe908743624c0fd7df0b964cdbf4dc9e022f633fca72bcc27

See more details on using hashes here.

Provenance

The following attestation bundles were made for kube2docs-0.2.0-py3-none-any.whl:

Publisher: publish.yml on matt-szymczyk/kube2docs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page