This commit is contained in:
Timothy Jaeryang Baek
2026-07-10 18:14:03 -05:00
parent 5da7f80dae
commit 08118694dc
2 changed files with 4 additions and 1 deletions
@@ -26,6 +26,6 @@ In Open WebUI, go to **Admin Panel -> Settings -> Integrations -> Open Terminal*
All fields are optional. If a field is omitted, the orchestrator uses its global default, such as `TERMINALS_IMAGE` or `TERMINALS_KUBERNETES_STORAGE_MODE`.
Policy changes apply when a terminal is newly provisioned. Existing running terminals keep their current image and environment until they are stopped, refreshed, or cleaned up by idle timeout.
Policy changes apply when a terminal is newly provisioned. Existing running terminals keep their current image and environment until they are stopped, refreshed, or cleaned up by idle timeout. Open WebUI is an admin client for this policy state; Terminals remains the source of truth for both policy and lifecycle configuration.
Scheduled resets are configured through policy lifecycle, not policy fields. This keeps provisioning settings separate from ongoing maintenance.
+3
View File
@@ -1474,6 +1474,7 @@ The JSON data structure of `TOOL_SERVER_CONNECTIONS` might evolve over time as n
"key": "your-api-key",
"name": "Terminals",
"auth_type": "bearer",
"policy_id": "ai-computer",
"config": {
"access_grants": [
{"principal_type": "user", "principal_id": "*", "permission": "read"}
@@ -1484,6 +1485,8 @@ The JSON data structure of `TOOL_SERVER_CONNECTIONS` might evolve over time as n
```
- Persistence: This environment variable is a `ConfigVar` variable.
For an orchestrator connection, set `policy_id` to route every terminal request through that named policy. Omitting it intentionally uses the orchestrator's service defaults through its backward-compatible unscoped route.
:::tip Helm chart auto-configuration
When deploying on Kubernetes with the Open WebUI Helm chart and `terminals.enabled: true`, this variable is set automatically to point at the in-cluster orchestrator service. See the [Terminals (Orchestrator) guide](/features/open-terminal/terminals/) for details.
:::