From 0aef125909c3b23fbe21232fc3b43de203034279 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Tue, 10 Feb 2026 12:00:38 +0800 Subject: [PATCH] chore: bump execd version to v1.0.6 --- components/execd/bootstrap.sh | 2 +- examples/agent-sandbox/README.md | 2 +- examples/code-interpreter/README.md | 2 +- kubernetes/config/samples/sandbox_v1alpha1_pool.yaml | 2 +- server/DEVELOPMENT.md | 2 +- server/README.md | 6 +++--- server/README_zh.md | 6 +++--- server/example.config.k8s.toml | 2 +- server/example.config.k8s.zh.toml | 2 +- server/example.config.toml | 2 +- server/example.config.zh.toml | 2 +- 11 files changed, 15 insertions(+), 15 deletions(-) diff --git a/components/execd/bootstrap.sh b/components/execd/bootstrap.sh index 1c82705c..ce5c4272 100755 --- a/components/execd/bootstrap.sh +++ b/components/execd/bootstrap.sh @@ -30,7 +30,7 @@ if ! touch "$EXECD_ENVS" 2>/dev/null; then fi export EXECD_ENVS -echo "starting OpenSandbox execd daemon at $EXECD with version v1.0.5. https://github.com/alibaba/OpenSandbox/releases/tag/docker%2Fexecd%2Fv1.0.5" +echo "starting OpenSandbox execd daemon at $EXECD with version v1.0.6. https://github.com/alibaba/OpenSandbox/releases/tag/docker%2Fexecd%2Fv1.0.6" $EXECD & # Allow chained shell commands (e.g., /test1.sh && /test2.sh) diff --git a/examples/agent-sandbox/README.md b/examples/agent-sandbox/README.md index ce6b0e45..28fd4a6a 100644 --- a/examples/agent-sandbox/README.md +++ b/examples/agent-sandbox/README.md @@ -23,7 +23,7 @@ opensandbox-server init-config ~/.sandbox.toml --example docker ```toml [runtime] type = "kubernetes" -execd_image = "opensandbox/execd:latest" +execd_image = "opensandbox/execd:v1.0.6" [kubernetes] namespace = "default" diff --git a/examples/code-interpreter/README.md b/examples/code-interpreter/README.md index 67cc9537..cf409210 100644 --- a/examples/code-interpreter/README.md +++ b/examples/code-interpreter/README.md @@ -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.5 + image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.6 command: [ "/bin/sh", "-c" ] args: - | diff --git a/kubernetes/config/samples/sandbox_v1alpha1_pool.yaml b/kubernetes/config/samples/sandbox_v1alpha1_pool.yaml index 1dff04f1..a68df4e7 100644 --- a/kubernetes/config/samples/sandbox_v1alpha1_pool.yaml +++ b/kubernetes/config/samples/sandbox_v1alpha1_pool.yaml @@ -29,7 +29,7 @@ spec: - name: opensandbox-bin mountPath: /opt/opensandbox/bin - name: execd-installer - image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.5 + image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.6 command: [ "/bin/sh", "-c" ] args: - | diff --git a/server/DEVELOPMENT.md b/server/DEVELOPMENT.md index 53f4f03d..49dca166 100644 --- a/server/DEVELOPMENT.md +++ b/server/DEVELOPMENT.md @@ -59,7 +59,7 @@ This guide provides comprehensive information for developers working on OpenSand [runtime] type = "docker" - execd_image = "opensandbox/execd:v1.0.5" + execd_image = "opensandbox/execd:v1.0.6" [docker] network_mode = "host" diff --git a/server/README.md b/server/README.md index 9732c4e6..b6d1dbc4 100644 --- a/server/README.md +++ b/server/README.md @@ -91,7 +91,7 @@ Before you start the server, edit the configuration file to suit your environmen [runtime] type = "docker" - execd_image = "opensandbox/execd:v1.0.5" + execd_image = "opensandbox/execd:v1.0.6" [docker] network_mode = "host" # Containers share host network; only one sandbox instance at a time @@ -107,7 +107,7 @@ Before you start the server, edit the configuration file to suit your environmen [runtime] type = "docker" - execd_image = "opensandbox/execd:v1.0.5" + execd_image = "opensandbox/execd:v1.0.6" [docker] network_mode = "bridge" # Isolated container networking @@ -132,7 +132,7 @@ Before you start the server, edit the configuration file to suit your environmen ```toml [runtime] type = "docker" - execd_image = "opensandbox/execd:v1.0.5" + execd_image = "opensandbox/execd:v1.0.6" [egress] image = "opensandbox/egress:v1.0.0" diff --git a/server/README_zh.md b/server/README_zh.md index b7b24fb7..8a4a5584 100644 --- a/server/README_zh.md +++ b/server/README_zh.md @@ -92,7 +92,7 @@ opensandbox-server init-config ~/.sandbox.toml --example k8s-zh [runtime] type = "docker" - execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.5" + execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.6" [docker] network_mode = "host" # 容器共享宿主机网络,只能创建一个sandbox实例 @@ -108,7 +108,7 @@ opensandbox-server init-config ~/.sandbox.toml --example k8s-zh [runtime] type = "docker" - execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.5" + execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.6" [docker] network_mode = "bridge" # 容器隔离网络 @@ -133,7 +133,7 @@ opensandbox-server init-config ~/.sandbox.toml --example k8s-zh ```toml [runtime] type = "docker" -execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.5" +execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.6" [egress] image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/egress:v1.0.0" diff --git a/server/example.config.k8s.toml b/server/example.config.k8s.toml index 69db82e0..cface7dc 100644 --- a/server/example.config.k8s.toml +++ b/server/example.config.k8s.toml @@ -30,7 +30,7 @@ log_level = "INFO" [runtime] type = "kubernetes" -execd_image = "opensandbox/execd:v1.0.5" +execd_image = "opensandbox/execd:v1.0.6" [storage] # Volume and storage configuration diff --git a/server/example.config.k8s.zh.toml b/server/example.config.k8s.zh.toml index 8c231060..5fe3cf98 100644 --- a/server/example.config.k8s.zh.toml +++ b/server/example.config.k8s.zh.toml @@ -30,7 +30,7 @@ log_level = "INFO" [runtime] type = "kubernetes" -execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.5" +execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.6" [storage] # 卷存储配置 diff --git a/server/example.config.toml b/server/example.config.toml index 59c6dd9f..55b87ec7 100644 --- a/server/example.config.toml +++ b/server/example.config.toml @@ -32,7 +32,7 @@ api_key = "" # Runtime selection (docker | kubernetes) # ----------------------------------------------------------------- type = "docker" -execd_image = "opensandbox/execd:v1.0.5" +execd_image = "opensandbox/execd:v1.0.6" [egress] # Egress configuration diff --git a/server/example.config.zh.toml b/server/example.config.zh.toml index 5d68fdeb..3571b190 100644 --- a/server/example.config.zh.toml +++ b/server/example.config.zh.toml @@ -32,7 +32,7 @@ api_key = "" # Runtime selection (docker | kubernetes) # ----------------------------------------------------------------- type = "docker" -execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.5" +execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.6" [egress] # Egress configuration