Skip to content
Open
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 examples/agent-sandbox/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ opensandbox-server init-config ~/.sandbox.toml --example docker
```toml
[runtime]
type = "kubernetes"
execd_image = "opensandbox/execd:v1.0.9"
execd_image = "opensandbox/execd:v1.0.10"

[kubernetes]
namespace = "default"
Expand Down
2 changes: 1 addition & 1 deletion examples/code-interpreter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ spec:
- name: opensandbox-bin
mountPath: /opt/opensandbox/bin
- name: execd-installer
image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.9
image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.10
command: [ "/bin/sh", "-c" ]
args:
- |
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/charts/opensandbox-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ configToml: |

[runtime]
type = "kubernetes"
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.9"
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.10"

[kubernetes]
kubeconfig_path = ""
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/config/samples/sandbox_v1alpha1_pool.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
- name: opensandbox-bin
mountPath: /opt/opensandbox/bin
- name: execd-installer
image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.9
image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.10
command: [ "/bin/sh", "-c" ]
args:
- |
Expand Down
6 changes: 3 additions & 3 deletions oseps/0004-secure-container-runtime.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Extension to `~/.sandbox.toml`. A single `[secure_runtime]` section configures t
```toml
[runtime]
type = "docker" # or "kubernetes"
execd_image = "opensandbox/execd:v1.0.9"
execd_image = "opensandbox/execd:v1.0.10"

# Secure container runtime configuration.
# When enabled, ALL sandboxes on this server use the specified runtime.
Expand Down Expand Up @@ -210,7 +210,7 @@ Example 1 — gVisor on Docker:
# ~/.sandbox.toml
[runtime]
type = "docker"
execd_image = "opensandbox/execd:v1.0.9"
execd_image = "opensandbox/execd:v1.0.10"

[secure_runtime]
type = "gvisor"
Expand All @@ -224,7 +224,7 @@ Example 2 — Kata Containers (QEMU) on Kubernetes:
# ~/.sandbox.toml
[runtime]
type = "kubernetes"
execd_image = "opensandbox/execd:v1.0.9"
execd_image = "opensandbox/execd:v1.0.10"

[secure_runtime]
type = "kata"
Expand Down
2 changes: 1 addition & 1 deletion oseps/0007-fast-sandbox-runtime-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ api_key = "your-secret-key"

[runtime]
type = "kubernetes"
execd_image = "opensandbox/execd:v1.0.9"
execd_image = "opensandbox/execd:v1.0.10"

[kubernetes]
namespace = "default"
Expand Down
2 changes: 1 addition & 1 deletion server/DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ This guide provides comprehensive information for developers working on OpenSand

[runtime]
type = "docker"
execd_image = "opensandbox/execd:v1.0.9"
execd_image = "opensandbox/execd:v1.0.10"

[docker]
network_mode = "host"
Expand Down
4 changes: 2 additions & 2 deletions server/docker-compose.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ configs:

[runtime]
type = "docker"
# execd_image = "opensandbox/execd:v1.0.9"
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.9"
# execd_image = "opensandbox/execd:v1.0.10"
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.10"

[egress]
image = "opensandbox/egress:v1.0.4"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ redis.consumer_concurrency = 8

[runtime]
type = "kubernetes"
execd_image = "opensandbox/execd:v1.0.9"
execd_image = "opensandbox/execd:v1.0.10"

[storage]
# Volume and storage configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ redis.consumer_concurrency = 8

[runtime]
type = "kubernetes"
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.9"
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.10"

[storage]
# 卷存储配置
Expand Down
2 changes: 1 addition & 1 deletion server/opensandbox_server/examples/example.config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ redis.consumer_concurrency = 8
# Runtime selection (docker | kubernetes)
# -----------------------------------------------------------------
type = "docker"
execd_image = "opensandbox/execd:v1.0.9"
execd_image = "opensandbox/execd:v1.0.10"

[egress]
# Egress configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ redis.consumer_concurrency = 8
# Runtime selection (docker | kubernetes)
# -----------------------------------------------------------------
type = "docker"
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.9"
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.10"

[egress]
# Egress configuration
Expand Down
Loading