Platform / Module

Control plane

The machinery that operates the fleet. Not a service customers reach directly.

The control plane is the system that takes a subscription event from Stripe or an app store, turns it into a provisioned VPN peer or a storage bucket, and tracks the fleet of nodes that make the product work. It is not a service customers reach directly. We describe it here because every other module on this site refers to "the control plane," and people deserve to know what that phrase refers to.

What it does

Where it runs

Redundant control-plane instances with automatic failover. Both instances run the same code against a streaming-replicated database; if the primary fails, a hot standby is promoted. Customer API calls hit a load-balanced hostname that resolves to whichever instance is healthy.

The database is a modern relational engine with an additional hot-standby replica for disaster recovery. Secrets — API keys, store credentials, TLS private keys — live in a self-hosted secrets manager that the control plane reads from at startup. Nothing on the customer's side depends on these internals; we describe them so that "the control plane" is not a black box.

What the control plane stores

What the control plane does not store

Observability

We run industry-standard fleet monitoring against our own infrastructure — node CPU, memory, bandwidth, API latency, error rates. These dashboards are for our operators. They contain aggregate fleet metrics, not per-customer traffic. Operator login is SSO to our internal identity provider; customer tokens are not valid there.

Failure mode

If the control plane is completely offline, existing VPN tunnels keep working — WraithGate nodes hold their peer tables locally, so an active connection does not depend on the control plane being up. Provisioning new peers, rotating servers, and processing new subscriptions stop until the control plane is back. This is the right tradeoff: outages affect onboarding, not in-flight privacy.

What this means for you

The control plane is where a lot of privacy products quietly retain too much — "for support," "for analytics," "for fraud prevention." Ours holds subscription state and fleet health, and that is roughly it. If an outage takes the control plane down, your existing tunnels do not notice. If a compelled disclosure asked the control plane for customer traffic, the honest answer is that the control plane never sees customer traffic.

Back to all modules.