Cluster Map
Interactive topology visualization of resource relationships.
Layout Modes
- Grid — Compact grid of resources within namespace regions. Best for overview.
- Flow — Horizontal dependency chain: Ingress/Gateway → HTTPRoute → Service → Deployment → ReplicaSet → Pod. Best for understanding traffic flow.
In both modes, namespace regions are arranged in a grid of up to 3 columns. Regions are ReactFlow group nodes with child resource nodes.
Relationship Detection
| Relationship | Detection Method | Edge Type |
|---|---|---|
| Deployment → ReplicaSet → Pod | ownerReferences chain | owns |
| Service → Pods | Label selector matching | selects |
| Ingress → Service | spec.rules.http.paths.backend | routes |
| Gateway → HTTPRoute | HTTPRoute spec.parentRefs | routes |
| HTTPRoute → Service | spec.rules.backendRefs | routes |
| HPA → Deployment | spec.scaleTargetRef | hpa |
| Pod → PVC | spec.volumes.persistentVolumeClaim | mounts |
| PVC → PV | spec.volumeName | bound |
| Pod → ConfigMap/Secret | volumes + envFrom | mounts / envFrom |