Connecting a cluster
1
Add the cluster
Adding a cluster mints its credential and reveals it once. Store it before you leave the
screen.
2
Create the secret
The screen renders a
kubectl create secret command. The credential is never written into the
command itself — you put it into a Secret you create, because passing it as a Helm value would
leave it in your shell history and readable from the release’s stored values.3
Install the operator
A
helm upgrade --install command comes pre-filled with this deployment’s URL and the chart’s
Secret name. Both commands stay readable from the row afterwards — they carry no secret and are
the same every time.Three states, not two
Each row reports whether the install is reconciling, paused, or not connected yet, along with its namespace, operator version, how many resources it declares, and when it last synced. The third state earns its place. An install you created but never deployed against is configured and has never called in — describing that as reconciling would contradict its own last-sync column, which reads Never.What “Cluster-managed” tells you about an edit
Declarable resources carry a Cluster-managed badge wherever they are listed. Provenance alone cannot answer the question you actually have — will my edit stick? — so the badge distinguishes three situations:Pausing, and removing
Pause and resume are per row. Resuming reverts whatever was edited while the install was paused, so the confirmation says so before you agree to it. Removing an install is per row too, and its confirmation names all three consequences at once:- The resources it declares stop being managed and become editable here — they are not deleted.
- Its credential is revoked, so an operator still running in that cluster is locked out.
- Unlike a pause, nothing reverses it.
Rotating a credential is deliberately not on this screen. Rotation locks the install out until
someone redeploys it with the new value, and nothing here can carry that value into your cluster.
Next steps
Audit log
Where adding, pausing, and removing an install are recorded.
Roles & permissions
Seeing installs, and seeing what they declare, is its own capability.
Credentials & secrets
One of the kinds a cluster can declare.
MCP Gateway
MCP servers are declarable too, in both shapes they take.