Before you start
- You need the owner or admin role.
- To delete an executor, first delete every node it hosts.
Revoke the API key
Use this when you want the executor to stop reaching Novacula right away — a compromised host, a colo you’re shutting down — without losing the executor or its history.Find the key
Locate the key the executor uses. The last used column helps you match it to the right executor.
- The executor can no longer reach Novacula and shows offline within ~30 seconds.
- Its nodes stay in Novacula in their last reported state. They show as unreachable; any lifecycle action you queue applies only once the executor reconnects.
- The processes on the host keep running — the executor doesn’t stop just because it can’t reach Novacula.
Delete the executor
Use this when you’re decommissioning the host for good.1. Drain its nodes
You can’t delete an executor that still hosts nodes. For each node, stop it, then delete it — see the node lifecycle. Deleting a node removes its data, and there’s no automatic transfer to another executor. If you need to keep the data, copy the node’s data directory off the host before you delete it.2. Delete the row
Open Executors, select the executor, and choose Delete. The row is removed and the name frees up — you can reuse it for a new executor. The API key tied to the executor is revoked at the same time.3. Clean up your infrastructure
Novacula can’t reach into your infrastructure — the executor’s daemon and the node processes keep running until you remove them yourself.Agent (bare metal / VM)
Run on the host as root. The agent’s built-inuninstall removes only its own daemon — the per-node units, data directory, and firewall table survive it, so remove those too.
Stop the per-node units
They keep running after the agent is gone. List them, then disable and remove the unit files:
Operator (Kubernetes)
The CRD and per-node resources outlive a plainhelm uninstall, so clean up in order.
Delete the nodes
Do this while the operator is still running — its finalizer tears down each node’s
StatefulSet, PVC, Service, Ingress, and NetworkPolicy:Terminating? If the operator was removed before its nodes, clear the finalizer by hand:
StatefulSet (persistentVolumeClaimRetentionPolicy.whenDeleted: Delete); if a PV uses the Retain reclaim policy, delete the released PVs separately.
Neither
uninstall nor helm uninstall revokes the executor’s API key or notifies Novacula — deleting the executor row (step 2) is what revokes the key. For the full install/uninstall walkthrough, see the bare metal or Kubernetes recipe.