Skip to main content

How DevPod Deploys Workspaces

Devpod deploys workspaces using the "up" command, when executed DevPod builds a devcontainer, if not already available, then uses the provider to deploy the devcontainer to a workspace. Below is a sequence diagram of the main stages of the "up" command.

DevPod Up Sequence
DevPod up - Sequence Diagram

First DevPod checks if we need to create/start a machine to deploy the devcontainer to. Next we pull the source code and .devcontainer.json source from git or a local file and use this with the local environment to build the workspace. Building is done by the agent since we need access to build tools such as buildkit or kaniko, i.e. devpod workspace build. The workspace now contains everything needed, so DevPod sets up a SSH connection to the DevPod agent running alongside the container's control plane.

The agent recieves "devpod agent workspace up" with the workspace spec serialised as workspace-info and uses the control plane (kube api server for k8s, docker daemon for anything else) to start the devcontainer. Once started DevPod deploys a daemon to monitor activity, optionally sets up any platform access for pro users then optionally retrieves credentials from the local environment before launching the IDE. Once the IDE has started the deployment process has complete, DevPod's agent daemon will continue to monitor the pod, if deployed, to put the machine or container to sleep when not in use.