JoinToken
A JoinToken defines a pre-shared secret token that daemons can use to authenticate with the Riptides control plane. JoinTokens provide a simple onboarding mechanism suitable for initial setup, development environments, or scenarios where platform-native identity (AWS IAM, GCP identity) is not available.
A JoinToken is single-use. The control plane deletes the JoinToken object the moment a daemon successfully authenticates with it. A second daemon presenting the same token value afterwards is rejected. Do not share one JoinToken across multiple daemons — for example, do not configure every pod of a Kubernetes DaemonSet with the same token; only the first pod to register will succeed, and the rest will fail authentication. Create one JoinToken per daemon, or for Kubernetes deployments use the K8sSAT verifier instead, which authenticates each node automatically from its own projected ServiceAccount token.
- API Group:
auth.riptides.io - Version:
v1alpha1 - Kind:
JoinToken - Plural:
jointokens
- Type:
string - Required: Yes
The secret token value. Daemons must present this exact value to authenticate. Treat this as a credential — avoid committing it to version control. The JoinToken object is deleted as soon as a daemon successfully authenticates with it, so each token can only be used once.
workloadID
Section titled “workloadID”- Type:
string - Required: No
The workload identity to assign to daemons that authenticate with this token. If not set, the daemon’s workload ID is derived from the associated Verifier’s workloadIDTemplate.
expireAt
Section titled “expireAt”- Type:
string(RFC 3339 date-time) - Required: No
Expiration timestamp for the token. After this time, the token is no longer accepted. If omitted, the token does not expire automatically.
Example
Section titled “Example”apiVersion: auth.riptides.io/v1alpha1kind: JoinTokenmetadata: name: dev-onboarding-token namespace: riptides-systemspec: token: "my-secret-join-token-value" workloadID: riptides/daemon/dev/onboarding-node expireAt: "2026-06-01T00:00:00Z"