Sandbox Runtimes
The gateway’s configured compute driver determines how OpenShell creates each sandbox. The CLI workflow stays the same across drivers: you create, connect to, inspect, stop, start, and delete sandboxes through the gateway API.
Caller driver config is disabled by default across drivers. Enabling it does not authorize external attachments: referenced resources must carry matching operator-controlled approval labels. GPU device attachments are temporarily exempt. Host bind mounts, supplemental image mounts, and MXC host filesystem grants lack a trusted label resolver and are unavailable with admission enabled. See External Resource Admission for configuration, migration, and the explicit unsafe opt-out.
Most compute drivers run the OpenShell supervisor inside the sandbox workload.
The supervisor launches the agent process, applies policy, routes egress through
the proxy, injects configured credentials, and maintains the gateway session.
A driver may instead set driver_reports_runtime_readiness. In that mode,
driver-reported readiness does not require a supervisor session. The canonical
create-time policy is part of DriverSandboxSpec; a driver that enforces policy
outside the standard supervisor fetches later revisions through the existing
sandbox configuration API. The Windows MXC driver reports its own readiness.
Stop stops compute but retains the sandbox record and the driver’s persistent workspace boundary. Start reactivates the same driver resource. Delete remains independent and removes compute plus driver-owned persistent state. While a sandbox is stopped, gateway access paths and exposed services remain unavailable.
Restarting the gateway preserves this intent. During graceful shutdown, the gateway stops running-intent Docker, Podman, and MicroVM sandboxes through their drivers without recording an explicit user stop. At startup it sends idempotent start requests for Docker, Podman, and MicroVM sandboxes that were intended to run; already-running resources are unchanged, retained stopped compute is restarted, and explicitly stopped sandboxes remain stopped. Kubernetes workloads continue running independently of the gateway process.
Before exiting, the gateway waits up to ten seconds for supervisor-session ownership cleanup so replacement supervisors can reconnect after restart. If tracked cleanup exceeds this deadline, the gateway reports a shutdown error. Persistence errors during ownership release are logged separately.
The gateway forwards one exact, persisted main-process specification to every
driver. Drivers serialize that specification in
OPENSHELL_MAIN_PROCESS_SPEC; they do not install an idle sleep workload or
reconstruct argv with shell parsing. Runtime restart policies are disabled so
an exited canonical process remains a terminal sandbox result. Exit code zero
produces Completed; a nonzero or signal-normalized exit produces Error
with the exact exit code. Driver and supervisor failures remain Error.
Configure a Compute Driver
Configure the compute driver on the gateway. Current releases accept one driver per gateway. Set compute_driver in the gateway TOML file:
Reserved built-in values are docker, podman, kubernetes, vm, and mxc.
The mxc driver is available only in native Windows gateway builds.
Non-reserved names select an extension driver and require a
socket_path in [openshell.drivers.<name>].
When compute_driver is unset, the gateway auto-detects Kubernetes, then Podman, then Docker. Docker must respond on a known API socket. Podman first probes known API sockets and then asks the podman CLI for the active native or machine-backed socket. The VM driver is never auto-detected; configure it explicitly with compute_driver = "vm" or set OPENSHELL_COMPUTE_DRIVER=vm in the launch environment.
Common gateway options:
Set driver-specific values such as sandbox images, gateway endpoints, network names, TLS material, and VM sizing in the gateway TOML file. See the Gateway Configuration File reference for the full [openshell.drivers.<name>] schema.
Extension drivers use the same compute_driver.proto gRPC surface as the
managed VM driver. For an out-of-tree driver, choose a driver name and point
the gateway at the Unix socket the operator has already provisioned:
For a launch-time socket override, pass the selected driver name with the socket path. The endpoint replaces normal driver construction for that name, including canonical built-in names:
The gateway connects to the operator-provided endpoint; it does not provision or supervise the remote driver. The operator must protect the socket so only the gateway uid can access it.
Sandbox create supports --cpu and --memory for per-sandbox compute sizing.
Docker and Podman apply them as runtime limits. Kubernetes applies them as both
container requests and limits. The VM driver accepts the fields but currently
ignores them.
Sandbox create also accepts experimental driver-owned config through
--driver-config-json. The value is a JSON object keyed by driver name. The
gateway forwards only the block for the active driver, so a Kubernetes gateway
receives the kubernetes object from a value such as:
Nested keys inside each driver block use snake_case. The top-level envelope keys
are driver names, such as kubernetes, and are not part of the nested schema.
Driver config is for fields without a stable public flag. Prefer --cpu,
--memory, and --gpu for supported resource intent. When --gpu is present
without a count, OpenShell treats it as a request for one GPU. Pass
--gpu COUNT when requesting more than one GPU.
Kubernetes maps the GPU count to the nvidia.com/gpu pod resource limit.
Docker and Podman satisfy count-only GPU requests by selecting the requested
number of NVIDIA CDI devices from the local CDI inventory in round-robin order.
The drivers refresh the CDI inventory before validating or creating the
sandbox, so CDI devices added or removed after gateway start can affect later
creates. On WSL2 all-only runtimes, Docker or Podman can use
nvidia.com/gpu=all as a compatibility fallback, where it counts as one
selectable device.
Exact GPU device selection remains driver-owned and requires --gpu. Docker
and Podman accept cdi_devices as opaque CDI device names; replace the
top-level docker key with podman when using the Podman driver, for example
{"docker":{"cdi_devices":["nvidia.com/gpu=0"]}}. Explicit CDI device lists
must not contain duplicates, and their length must match the effective GPU
count. A single exact CDI device is compatible with the default --gpu
request. The VM driver accepts gpu_device_ids, for example
{"vm":{"gpu_device_ids":["0000:2d:00.0"]}}; the current VM implementation
accepts at most one entry and allows either --gpu or --gpu 1 when
gpu_device_ids is set.
Resource Capability Reporting
API clients can read each configured driver’s static resource request support
from the protected GetGatewayInfo response. The capability response describes
which request forms a driver implements. It does not report live resource
inventory, availability, or scheduling capacity, so a supported request can
still fail when the selected runtime cannot provide the resource.
The same response includes the compute driver’s negotiated extension snapshot. Protocol version and implementation version are separate: the implementation version identifies the OpenShell driver build, not the Docker daemon, Kubernetes server, or another compute backend. See Extension Protocol Negotiation.
CPU and memory capabilities report whether the driver enforces a resource
limit. GPU capabilities report whether the driver accepts a default GPU request
and an explicit GPU count. An omitted resource_capabilities message, or an
omitted CPU, memory, or GPU capability, means the driver did not report that
capability. A reported false value means that request form is unsupported.
For Kubernetes, pod.runtime_class_name maps to PodSpec runtimeClassName.
It overrides the gateway’s configured default runtime class for that sandbox,
while a typed SandboxTemplate.runtime_class_name value from the API still
takes precedence.
Docker and Podman supervisors use host networking. On Linux they connect to the gateway’s primary loopback listener. Sandbox JWT authentication restricts each supervisor to the sandbox-callable RPC allowlist; no additional gateway listener is created.
The published supervisor container uses a shell-free distroless Debian 13 image. Inspect its container logs and health status with your runtime tools; it does not provide a shell or package manager for interactive debugging. This does not change the tools available inside your workload image.
Docker Driver
Docker-backed sandboxes run as containers on the gateway host. Use Docker for local development, single-machine gateways, and hosts that already use Docker Desktop or Docker Engine.
The gateway talks to the Docker daemon to create sandbox containers. Docker is also required for local image builds from directories or Dockerfiles.
The trusted supervisor companion uses Docker host networking; the agent
workload retains network=none. On Linux the supervisor reaches the gateway at
its primary loopback endpoint. Docker Desktop requires host networking to be
enabled and does not support this mode together with Enhanced Container
Isolation. Set grpc_endpoint when the gateway is not reachable on the Docker
daemon host.
For maintainer-level implementation details, refer to the Docker driver README.
Select Docker with compute_driver = "docker" in [openshell.gateway]. Configure Docker driver values such as socket_path, grpc_endpoint, sandbox_runtime_image, supervisor_image, image_pull_policy, sandbox_pids_limit, and guest_tls_* in [openshell.drivers.docker]. The sandbox runtime image contains /openshell-sandbox; the supervisor image contains /openshell-supervisor. When socket_path is unset, the driver uses the same responsive local socket selected by auto-detection. An explicitly selected Docker driver falls back to /var/run/docker.sock when no candidate responds.
When operating openshell-driver-docker as an external driver, set
OPENSHELL_OTLP_ENDPOINT to export its spans. The driver continues W3C trace
context from gateway RPCs and reports as openshell-driver-docker.
Stop stops the existing Docker container without removing its writable layer or attached volumes. Start starts that same container. A durably stopped container stays stopped across gateway restart, and delete remains responsible for removing it. Graceful gateway shutdown stops running-intent Docker containers through the driver RPC without recording an explicit sandbox stop. On startup, the gateway reconciles that retained intent with an idempotent start request. Explicitly stopped sandboxes remain stopped.
For GPU-backed Docker sandboxes, configure Docker CDI before starting the gateway so OpenShell can detect the daemon capability.
Docker Driver Config Mounts
Docker driver config accepts user-supplied volume and tmpfs mounts. It also
accepts bind mounts when [openshell.drivers.docker] sets
enable_bind_mounts = true and explicitly disables resource admission in
gateway.toml. All examples require allow_driver_config = true. See Docker’s storage documentation for more information.
Docker local-driver named volumes created with bind options also expose
gateway-host paths, so OpenShell treats them like bind mounts and requires
enable_bind_mounts = true.
Use a volume mount for existing Docker named volumes:
Bind mounts share gateway-host filesystem resources with the sandbox. They may be considered insecure because they can negate OpenShell controls such as workspace isolation and filesystem policy. Use them only when you understand and accept that loss of isolation.
Raw paths cannot satisfy label admission. The following unsafe opt-out permits bind mounts and removes label protection for all Docker attachments:
Docker mount schema:
OpenShell rejects mount source, target, and Docker volume subpath values
with surrounding whitespace. OpenShell also rejects mount targets that replace
the workspace root or container root, or contain or are contained by the
configured SSH socket or reserved /opt/openshell, /etc/openshell,
/etc/openshell-tls, /run/openshell, and network
namespace roots. These checks do not make host bind mounts safe.
Podman Driver
Podman-backed sandboxes run as rootless containers on the gateway host. Use Podman for Linux workstation workflows that avoid a rootful Docker daemon.
The gateway talks to the Podman API socket. The Podman driver requires Podman 5.x, cgroups v2, rootless networking, and an active Podman user socket. When socket_path is not set, the driver probes known socket paths, then uses the podman CLI to resolve the active native or machine-backed connection. It fails to start if neither method finds a socket.
The agent workload uses network=none. Its trusted supervisor companion uses Podman’s host network for its gateway session and policy-approved upstream connections.
For maintainer-level implementation details, refer to the Podman driver README and Podman networking notes.
Select Podman with compute_driver = "podman" in [openshell.gateway]. Configure Podman driver values such as socket_path, network_name, sandbox_runtime_image, supervisor_image, stop_timeout_secs, image_pull_policy, grpc_endpoint, host_gateway_ip, ssh_socket_path, sandbox_pids_limit, and guest_tls_* in [openshell.drivers.podman].
Podman sandboxes default to a 45-second graceful stop window before Podman escalates from SIGTERM to SIGKILL. Set stop_timeout_secs in gateway config, or OPENSHELL_STOP_TIMEOUT for the standalone driver, when a local runtime needs a different teardown window.
Stop stops the existing Podman container while retaining its named workspace volume and driver-owned secrets. Start starts the same container. Delete is the operation that removes the container and named volume. Graceful gateway shutdown stops running-intent Podman containers through the driver RPC without recording an explicit sandbox stop. On startup, the gateway reconciles that retained intent with an idempotent start request while leaving explicitly stopped sandboxes alone.
For proxy-required networks, the Podman driver also accepts the corporate egress proxy keys https_proxy, no_proxy, proxy_auth_file, proxy_auth_allow_insecure, and proxy_connect_by_hostname. The supervisor chains policy-approved TLS tunnels through the proxy with HTTP CONNECT instead of dialing destinations directly. See the Gateway Configuration File reference for the full contract, including the cleartext-credential acknowledgement and the validated-IP CONNECT behavior.
On Linux, the host-networked supervisor uses the gateway’s primary loopback
endpoint. On macOS with podman machine, the driver uses gvproxy’s
host-loopback IP, 192.168.127.254, by default. Set host_gateway_ip only when
your Podman machine uses a non-standard host-loopback address, or set
grpc_endpoint explicitly when the gateway is remote.
Podman Driver Config Mounts
Podman driver config accepts user-supplied volume and tmpfs mounts.
All examples require allow_driver_config = true. Supplemental image mounts
require disabling resource admission. It also accepts bind mounts when
[openshell.drivers.podman] sets enable_bind_mounts = true and explicitly
disables resource admission in gateway.toml. Podman local-driver named
volumes created with bind options also expose gateway-host paths, so
OpenShell treats them like bind mounts and requires enable_bind_mounts = true.
Host bind mounts expose gateway host paths to sandbox requests, so they are
disabled by default.
Use a volume mount for existing Podman named volumes:
Bind mounts share gateway-host filesystem resources with the sandbox. They may be considered insecure because they can negate OpenShell controls such as workspace isolation and filesystem policy. Use them only when you understand and accept that loss of isolation.
Raw paths cannot satisfy label admission. The following unsafe opt-out permits bind mounts and removes label protection for all Podman attachments:
Podman mount schema:
Podman volume and image mounts do not support subpath in OpenShell driver
config, and OpenShell rejects subpath for those mount types. OpenShell rejects
mount source and target values with surrounding whitespace. OpenShell also
rejects mount targets that replace the workspace root, container root, supervisor
files, /etc/openshell, /etc/openshell-tls, authentication material, or
network namespace paths. These checks do not make host bind mounts safe.
MicroVM Driver
MicroVM-backed sandboxes run inside VM-backed isolation instead of a container boundary. Use MicroVM when workloads need a VM boundary instead of a local container boundary.
The gateway uses the VM compute driver to create VM-backed sandboxes. MicroVM requires host virtualization support. It uses libkrun with Apple’s Hypervisor framework on macOS, KVM on Linux, and QEMU for GPU-backed sandboxes on Linux.
The VM driver boots a cached immutable bootstrap ext4 root disk. When the requested sandbox image differs from the bootstrap image, the driver stages the registry image as an OCI layout, unpacks it inside a bootstrap VM with umoci, and caches the prepared image disk by image identity. Each sandbox receives that prepared disk read-only plus its own writable overlay.ext4 disk for /, including /sandbox writes and runtime TLS material. The overlay persists for the sandbox lifetime and is deleted with the sandbox state directory.
VM sandbox creation follows the same progress model as Kubernetes-backed sandboxes. The gateway accepts the sandbox, then the VM driver publishes watch events while it resolves the image, prepares or reuses the bootstrap and prepared image caches, creates the writable overlay, and starts the VM launcher.
On graceful gateway shutdown, the gateway stops running-intent VMs through the driver RPC while retaining their launch records and writable overlays. On restart, the gateway starts a fresh VM driver process and reconciles the retained intent through the same idempotent start request used by the local container drivers. Running-intent VMs restart with their existing overlay.ext4, while explicitly stopped VMs remain stopped.
Stopped VM state directories contain a marker that prevents startup from
launching the VM. The driver retains sandbox.pb, overlay.ext4, and extension
state, then removes the marker and restores the same overlay on start.
CPU-only VMs do not inherit GPU filesystem allowances from the host. A policy can keep /proc read-only on a GPU-equipped host. For GPU-assigned VMs, the sandbox discovers GPU paths inside the guest.
For maintainer-level implementation details, refer to the VM driver README.
Enable the VM Driver
The VM driver is opt-in. Release packages can install openshell-driver-vm, but the gateway does not select it unless you configure the driver explicitly.
Enable VM by setting compute_driver = "vm" in the gateway TOML file:
For a launch-time override, set OPENSHELL_COMPUTE_DRIVER=vm in the gateway environment and restart the service.
Configure VM driver values such as grpc_endpoint, driver_dir, state_dir, default_image, bootstrap_image, vcpus, mem_mib, overlay_disk_mib, krun_log_level, and guest_tls_* in [openshell.drivers.vm]. The default workload and bootstrap image is nvcr.io/nvidia/base/ubuntu:24.04; configure a user-owned image with the agents and tools required by the workload. The VM state_dir stores overlay disks, console logs, runtime state, image-rootfs cache, and the private run/compute-driver.sock socket. The VM socket path is managed by the gateway and is not configurable through remote endpoint settings.
The gateway starts openshell-driver-vm over a private Unix socket and passes its process ID so the driver can reject unexpected local clients. The driver’s standalone TCP listener is disabled unless --allow-unauthenticated-tcp is set for local development.
Local image resolution
The VM driver resolves sandbox images from a local container engine before falling back to registry pulls. It tries Docker first, then uses the same Podman socket discovery as the Podman driver. On Linux with Podman, enable the API socket so the driver can find local images:
Network isolation
VM sandboxes boot without a virtual NIC. openshell-sandbox intercepts workload
network syscalls inside the guest and carries mediated streams over virtio-vsock
to the host openshell-supervisor, which owns DNS, policy evaluation, and
external connections. The driver does not create TAP interfaces or host
nftables rules.
Corporate Proxy Egress
For proxy-required networks, the VM driver accepts the same corporate egress proxy keys as the Podman driver: https_proxy, no_proxy, proxy_auth_file, proxy_auth_allow_insecure, proxy_connect_by_hostname, and proxy_ca_bundle. The host supervisor chains policy-approved TLS tunnels through the proxy with HTTP CONNECT instead of dialing destinations directly.
The settings reach the host supervisor through driver-owned arguments, so a sandbox cannot select, alter, or disable the proxy from inside the guest.
A proxy on the corporate network needs no special address and works on every VM sandbox. The guest’s callback to the gateway never traverses the proxy.
A proxy on the gateway host works for both libkrun and QEMU sandboxes. Configure
https_proxy = "http://host.openshell.internal:<port>"; the host supervisor
normalizes that name to host loopback.
The credential and private CA material stay with the host supervisor rather than being staged into the guest. See the Gateway Configuration File reference for the full contract, including the cleartext-credential acknowledgement and the validated-IP CONNECT behavior.
Kubernetes Driver
Kubernetes-backed sandboxes run as pods in the configured sandbox namespace. Use Kubernetes for shared clusters, remote compute, GPU scheduling, and operator-managed environments.
Kubernetes workspace namespaces are an administrative trust boundary. In shared and managed modes, only the OpenShell gateway and its trusted Agent Sandbox controller may administer Sandbox CRs, sandbox pods, or the configured sandbox ServiceAccount in those namespaces. In operator mode, allowlist only namespaces where the platform operator preserves that exclusive control. Untrusted principals must not be able to create sandbox pods with fabricated owner references or use the sandbox ServiceAccount. The operator namespace allowlist is a trust grant, not a tenant isolation mechanism.
Helm deployments set Kubernetes driver values through the chart.
For maintainer-level implementation details, refer to the Kubernetes driver README.
proxy_ca_bundle needs only the CA that signs the proxy’s certificate, or that
a TLS-intercepting proxy re-signs upstream certificates with. Public roots
already come from the supervisor image and its TLS stack, so supplying a full
merged trust bundle adds hundreds of kilobytes of duplicated roots for no
benefit.
On OpenShift, copy the cluster proxy’s trusted-CA ConfigMap into the gateway’s release namespace rather than pointing at an injected trusted-CA bundle. A copy is required in any case, because ConfigMaps cannot be referenced across namespaces:
Then set upstreamProxy.caBundle.configMapName to corporate-proxy-ca and
leave upstreamProxy.caBundle.key at its ca.crt default.
Managed-mode sandbox runtime generations require the gateway ServiceAccount to
create and delete Secrets in workspace namespaces. Kubernetes RBAC cannot
restrict Secret create by resource name, so the Helm chart grants cluster-wide
Secret create and delete. Secret get is limited to the configured TLS and
image-pull source Secrets in the sandbox namespace. Do not reuse the gateway
ServiceAccount for unrelated workloads.
The Kubernetes driver always places the sandbox runtime in the workload Pod and
the supervisor in a separate, directly managed Pod. The
workload Pod runs openshell-sandbox as the same non-root UID/GID as the agent
and requests no added Linux capabilities. The supervisor Pod runs
openshell-supervisor, authenticates to the gateway with a sandbox JWT, and
owns upstream connections. Both containers disable privilege escalation, drop
all capabilities, and use RuntimeDefault seccomp. The sandbox adds a nested
seccomp user-notification filter and Landlock restrictions before it launches
the agent. One namespace-wide, empty-egress NetworkPolicy is the mandatory
outer fence for all OpenShell workload Pods. It permits supervisor Pods to
reach sandbox listeners; TLS and JWT identity enforce the exact pairing.
The Kubernetes driver creates namespaced agents.x-k8s.io Sandbox resources from the Kubernetes SIG Apps agent-sandbox project. It detects the served Sandbox API at runtime, caches the selected API version for the gateway process, and uses v1beta1 when available before falling back to v1alpha1, so supported Agent Sandbox installations work without version-specific operator configuration. The Agent Sandbox controller turns those resources into sandbox pods and related storage.
Stop patches the existing resource rather than deleting it. For v1beta1,
the driver sets spec.operatingMode to Suspended or Running. For
v1alpha1, it sets spec.replicas to 0 or 1. The Sandbox resource and its
workspace PVC keep their identity across both operations. Stop returns only
after the controller reports suspension and deletes the old pod, so an
immediate start cannot race the prior pod’s termination.
If Agent Sandbox is upgraded in place, restart the OpenShell gateway after the controller and CRD rollout completes so the gateway can detect the served API versions again.
Sandbox.spec.volumeClaimTemplates is immutable after creation. To change storage configuration, delete the sandbox and create a new one with the updated spec.
Kubernetes Driver Config PVC Mounts
Kubernetes driver config can mount existing PersistentVolumeClaims into the
agent container. Use this when storage is provisioned outside OpenShell and a
sandbox should mount selected PVC subpaths instead of using the default
OpenShell-created /sandbox workspace PVC.
Kubernetes PVC mount schema:
OpenShell rejects duplicate volume names, mounts that reference unknown volumes,
protected mount targets, and mounts that replace OpenShell TLS, supervisor,
ServiceAccount token, or SPIFFE paths. Read-write PVC access requires
read_only: false on both the PVC volume and each writable mount.
Any driver-config mount under /sandbox disables the default /sandbox
workspace PVC injection for that sandbox. Only the explicit mount paths persist
through the external PVC; other /sandbox paths come from the current sandbox
image.
Sandbox User Identity
The policy can set process.run_as_user and process.run_as_group
independently. Each explicit field wins. The active compute driver supplies the
identity for omitted fields.
Explicit numeric values may use any non-root Linux UID/GID from 1 through
4294967294. OpenShell rejects 0 as root and 4294967295 as the invalid
identity sentinel. Low numeric identities can inherit permissions from matching
accounts, files, volumes, or devices, so choose them with the same care as any
other runtime identity.
Docker / Podman
Docker and Podman inspect the final image and use its OCI USER declaration as
a per-field fallback. Supported forms include app, app:staff, a numeric UID
whose passwd entry supplies its primary GID, and an accountless numeric pair
such as 1234:1235.
The driver pins container creation to the immutable image ID it inspected. The
supervisor validates any required names inside that image and preserves the
declared name or numeric components for both direct and SSH children. When
USER omits the group, the supervisor uses the user’s numeric primary GID. It
does not modify /etc/passwd or /etc/group.
Docker also inspects OCI WorkingDir. An absolute value becomes the
agent workspace; an empty, root (/), or explicit /sandbox value uses the
managed /sandbox compatibility workspace.
OpenShell creates and owns that compatibility workspace. Any other workdir must
already exist in the immutable image without symlink components. The completed
UID/GID and supplementary groups must already be able to traverse every parent
and write and enter the workdir. OpenShell does not change that directory’s
ownership or mode. A one-shot validator drops to that identity and uses kernel
effective-access checks, including POSIX ACL grants and LSM denials. It rejects
workdirs that overlap the OCI runtime namespaces under /proc, /sys, or
/dev, and rejects overlap with actual OpenShell control paths. Docker checks
the original image filesystem in the final supervisor and rejects image
VOLUME declarations that would mask the workdir or one of its parents before
validation. The resolved workspace is the cwd and HOME for direct and SSH
children. The supervisor itself starts from /, so a missing or invalid
workspace is handled during readiness instead of preventing the container
runtime from starting it.
Sandbox creation fails before readiness if a required USER component is
missing, malformed, unknown, ambiguous, or resolves to UID/GID 0. An image
without USER therefore works only when policy explicitly provides both
identity fields.
Kubernetes / OpenShift
The Kubernetes driver auto-detects the sandbox UID from OpenShift SCC namespace annotations:
openshift.io/sa.scc.uid-range(format:<start>/<size>, e.g.1000000000/10000) provides the UID.openshift.io/sa.scc.supplemental-groupsprovides the GID when present; otherwise the resolved UID is used as the GID.- On non-OpenShift clusters, or when annotations are absent, the driver falls back to
1000.
You can override autodetection with explicit sandbox_uid / sandbox_gid config in [openshell.drivers.kubernetes]. When set, the driver skips namespace annotation lookup entirely.
The resolved UID/GID appear in:
- Supervisor container environment variables (
OPENSHELL_SANDBOX_UID,OPENSHELL_SANDBOX_GID) for direct kernel-level privilege dropping without/etc/passwdlookups. - PVC init container
securityContext.runAsUser/runAsGroup/fsGroupfor workspace ownership operations.
VM Driver
The VM driver injects the sandbox UID into the rootfs guest’s /etc/passwd, /etc/group, and /etc/gshadow during rootfs preparation. Default UID is 10001; configure sandbox_uid in [openshell.drivers.vm] to use a different value.
Custom Images
Docker and Podman custom images do not need a baked-in "sandbox" user. Declare
a non-root OCI USER, or set both process identity fields explicitly in policy.
Named image users require matching account entries; a numeric UID:GID pair
does not. For Docker, declare an absolute OCI WORKDIR to select the workspace.
Images with no working directory, WORKDIR /, or WORKDIR /sandbox use
OpenShell’s managed /sandbox compatibility workspace. For any other Docker
path, create the directory in the image and grant the final process identity
write and execute permission in the Dockerfile. Podman, Kubernetes/OpenShift,
and VM sandboxes continue to use /sandbox.