Skip to main content
When managing multiple clusters, drift happens — different Kubernetes versions, mismatched images, inconsistent configurations. An agent can audit all clusters in parallel, comparing everything from node versions to installed CRDs.

Version Drift Check

An agent asked “are my clusters running the same versions?” fans out across all clusters in a single execute call:

Image Consistency

Compare which container images are running across clusters — catch cases where one cluster is on v1.2.3 and another is still on v1.1.0:

CRD Comparison

Check which Custom Resource Definitions are installed in each cluster — useful for ensuring all clusters have the same operators and extensions:

Why This Matters

Multi-cluster management typically requires dedicated tools — fleet managers, policy engines, GitOps controllers. For ad-hoc checks and audits, Code Mode gives agents the same cross-cluster visibility without any additional infrastructure. The agent uses the CNAP API to list clusters, then fans out through each cluster’s kube proxy in parallel. It composes the comparison logic — version matching, image diffing, CRD set intersection — inside the sandbox. One conversation, full fleet visibility.