Connect a cluster
Connecting takes one Helm command. When you connect a cluster in the Runtimez UI, we generate your exact command and a connection token — the snippet below shows the shape of it.
Install
Section titled “Install”# 1. Add the Runtimez chart repositoryhelm repo add runtimez https://charts.runtimez.iohelm repo update
# 2. Install the read-only agenthelm install runtimez-agent runtimez/agent \ --namespace runtimez --create-namespace \ --set token=<YOUR-CONNECT-TOKEN>Verify the agent is running
Section titled “Verify the agent is running”kubectl get pods -n runtimezkubectl logs -n runtimez deploy/runtimez-agent --tail=50The agent installs into its own namespace and binds to a ClusterRole scoped to read-only verbs. See RBAC & security model for the exact manifest, and review the chart before you install if you want to.
What happens next
Section titled “What happens next”The agent performs an initial inventory sync, then keeps it current. Your first production-risk report typically lands in under an hour.
- The cluster view — the twelve tabs and what each one answers.
- rtz CLI — query what the agent synced from your terminal.
- Uninstall — one command, ends read access immediately.
