Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion architecture/build-containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The `openshell-sandbox` supervisor is delivered by the selected compute driver:

| Driver | Supervisor delivery |
|---|---|
| Kubernetes | Sandbox pod image or Kubernetes driver pod template configuration. |
| Kubernetes | Init container copies the supervisor binary from the supervisor image into an `emptyDir` volume shared with the sandbox container. Configured via `supervisor_image` / `supervisor_image_pull_policy` in `KubernetesComputeConfig`. |
| Docker | Local supervisor binary or supervisor image extraction configured by the gateway. |
| Podman | Read-only OCI image volume from the `supervisor-output` image. |
| VM | Embedded in the VM runtime rootfs. |
Expand Down
2 changes: 1 addition & 1 deletion architecture/podman-driver.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ All capabilities are only available to the supervisor process. Sandbox child pro

## Supervisor Sideloading

The supervisor binary is delivered to sandbox containers via Podman's OCI image volume mechanism, distinct from both the Kubernetes hostPath approach and the VM's embedded rootfs.
The supervisor binary is delivered to sandbox containers via Podman's OCI image volume mechanism, distinct from the Kubernetes init-container approach (which copies the binary into an `emptyDir` volume) and the VM's embedded rootfs.

```mermaid
sequenceDiagram
Expand Down
Loading