From aeb0597dbf7a7caf8582e9a35ca213a3b8e9f187 Mon Sep 17 00:00:00 2001 From: mesutoezdil Date: Sat, 2 May 2026 13:21:01 +0200 Subject: [PATCH] docs: document --drivers flag and compute driver auto-detection MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The gateway auto-detects the compute driver (Kubernetes → Podman → Docker) when --drivers is not set. The VM driver requires explicit configuration. Added a table row to the Advanced Start Options section to document this behavior. Signed-off-by: mesutoezdil --- docs/sandboxes/manage-gateways.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/sandboxes/manage-gateways.mdx b/docs/sandboxes/manage-gateways.mdx index a20a27c20..a7c87b816 100644 --- a/docs/sandboxes/manage-gateways.mdx +++ b/docs/sandboxes/manage-gateways.mdx @@ -160,6 +160,7 @@ openshell gateway info --name my-remote-cluster | Flag | Purpose | |---|---| +| `--drivers` | Compute driver to use: `kubernetes`, `docker`, `podman`, or `vm`. When omitted, the gateway auto-detects the driver based on the runtime environment, checking in priority order: Kubernetes → Podman → Docker. The `vm` driver is never auto-detected and must be set explicitly. | | `--gpu` | Enable NVIDIA GPU passthrough. Requires NVIDIA drivers and the Container Toolkit on the host. OpenShell auto-selects CDI when enabled on the daemon and falls back to Docker's NVIDIA GPU request path (`--gpus all`) otherwise. | | `--plaintext` | Listen on HTTP instead of mTLS. Use behind a TLS-terminating reverse proxy. | | `--disable-gateway-auth` | Skip mTLS client certificate checks. Use when a reverse proxy cannot forward client certs. |