Remote workspaces
Distinct from provisioned workspaces: an authorized user registers machines external to the cluster (hostname, port, protocol, credentials) and connects to them through the same browser → proxy → guacd chain. Nothing is provisioned — the machine's lifecycle is managed elsewhere.
- Protocols:
ssh,vnc,rdp(KasmVNC is refused — it has no meaning for an external machine). - Opt-in via policy, fail-closed:
spec.remoteWorkspaces: trueon aWorkspacePolicy. Without it the feature is invisible in the portal and refused by the API. Platform admins always have it. - Credentials are write-only: sent at registration, stored in a per-entry Kubernetes Secret, resolved server-side at connect time, never returned by the API. Each entry is strictly private to its creator — even admins cannot see another user's remotes or credentials.
- Clipboard policies apply to remote sessions exactly as to provisioned ones.
Wake-on-LAN​
A remote machine with a registered MAC address can be woken from the portal — manually ("Wake" button) or automatically when opening a machine that turns out to be off (one WoL attempt, ~20 s boot grace, then reconnect).
A cluster pod cannot broadcast on the target's physical L2 network, so
the magic packet is delegated to an external relay on the target's
LAN, which the api-server calls over HTTP
(apiServer.wol.relayURL + optional bearer token). One relay per
site/VLAN in multi-site setups.
Network prerequisite​
guacd must be able to egress to the target machines — adapt your NetworkPolicies if you restrict egress (the example policy shipped with waas-images only covers in-cluster traffic).