Skip to content
Merged
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 components/execd/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
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:latest"
execd_image = "opensandbox/execd:v1.0.6"

[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.5
image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.6
command: [ "/bin/sh", "-c" ]
args:
- |
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 @@ -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:
- |
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.5"
execd_image = "opensandbox/execd:v1.0.6"

[docker]
network_mode = "host"
Expand Down
6 changes: 3 additions & 3 deletions server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions server/README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -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实例
Expand All @@ -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" # 容器隔离网络
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion server/example.config.k8s.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion server/example.config.k8s.zh.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
# 卷存储配置
Expand Down
2 changes: 1 addition & 1 deletion server/example.config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion server/example.config.zh.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading