Skip to content
This repository was archived by the owner on Aug 18, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions images/structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,13 @@ Coder inserts static assets into each workspace, including:

- code-server
- JetBrains Projector
- Coder CLI
- Coder CLI, which includes the [Coder Agent](../setup/architecture.md)

These assets are installed into the `/var/tmp/coder` directory of each
workspace. You do not need to include these static assets in your custom
images. However, the following software are **required** when you build custom
images:
workspace. You do not need to include these static assets in your custom images.
However, the following software are **required** when you build custom images:

- [POSIX
Utilities](https://pubs.opengroup.org/onlinepubs/9699919799/idx/utilities.html)
- [POSIX Utilities](https://pubs.opengroup.org/onlinepubs/9699919799/idx/utilities.html)
- [GNU libc](https://www.gnu.org/software/libc/libc.html)
- The minimum GNU libc version supported for the Coder-inserted assets is
`2.1`
Expand Down
3 changes: 3 additions & 0 deletions setup/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Coder is deployed on Kubernetes and includes the following components:
- **coderd**: the central authority; provides authentication and supports the
Dashboard and an API which you can use to create and interact with Workspaces
- **PostgreSQL**: data storage for session tokens, workspace information, etc.
- **coder agent**: a program running in each workspace that connects to `coderd`
and handles tunnelled connections, collection of workspace statistics (such as
processor and memory utilization), and manages programs, such as editors.

Each component runs in its own Kubernetes pod.

Expand Down
5 changes: 5 additions & 0 deletions workspaces/variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ env | grep CODER_
<th>Environment variable</th>
<th>Description</th>
</tr>
<tr>
<td><code>CODER_AGENT_TOKEN</code></td>
<td>The token used by the <a href="../setup/architecture.md">Coder Agent</a>
to authenticate with `coderd`</td>
</tr>
<tr>
<td><code>CODER_ASSETS_ROOT</code></td>
<td>The directory where coder adds Coder-specific assets during
Expand Down