NodeRingsDocs

How registration works

Phases, checkpoints, and what nr cluster register installs on your agent VM

nr cluster register is an orchestrator. It creates an agent in the NodeRings API, installs a small Kubernetes cluster on your VM, peers it to NodeRings, and optionally installs the Proxmox operator stack that reconciles customer VMs.

Phase overview

OrderPhaseWhat happens
1Agent recordCreate or reuse agent (--name / --agent-id)
2PrechecksOS, ports, disk, memory (unless --skip-prechecks)
3k3sLightweight Kubernetes on the VM
4CalicoCNI replacing the default flannel path
5LiqoInstall Liqo for Kubernetes-native peering
6Outbound peerProvider initiates peering toward NodeRings
7OffloadingOffload VNC gateway (and optional) namespaces
8Inbound peeringComplete the bidirectional peering handshake
9Operator (optional)Helm install proxmox-operator + related workloads
10VerifyPass/fail health gate

Exact names in local state may differ slightly; nr cluster status shows where you are.

Version pins

Before installing components, the CLI asks the API for platform-pinned versions (k3s, Calico, Liqo, helm, liqoctl, and related tools). That keeps providers on combinations NodeRings has validated.

--offline skips the pin fetch and falls back to local config defaults — use only for constrained experiments.

Companion tools

Missing helm / liqoctl binaries are installed into ~/.nr/bin with checksum verification when the platform provides digests. Keep ~/.nr/bin on your PATH for later liqoctl use.

Operator boundary

The operator phase is optional at the CLI level (--skip-operator-install) but required before you can sell VMs. Proxmox credentials never leave your cluster: the CLI creates Kubernetes Secrets locally; NodeRings only sends Custom Resources into permissioned namespaces.

Resume semantics

Each successful phase writes a checkpoint. --resume continues from the last success instead of redoing completed work. See Local state and Resume & recover.

What NodeRings can and cannot do

NodeRings canNodeRings cannot
Send VM orders as CRs to your peered namespacesRead your Proxmox API token
Observe metrics you forward for NR-* guestsReach Proxmox without your operator
Peer over the Liqo/WireGuard pathManage arbitrary non-NR- VMs

Deeper product model: How it works.