Skip to content

Commit 3c3d8fa

Browse files
authored
Merge pull request opensandbox-group#763 from alibaba/bump/execd-v1.0.13
chore: bump execd to v1.0.13
2 parents dd14e6d + 9f9fa60 commit 3c3d8fa

13 files changed

Lines changed: 19 additions & 19 deletions

File tree

examples/agent-sandbox/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ opensandbox-server init-config ~/.sandbox.toml --example docker
2323
```toml
2424
[runtime]
2525
type = "kubernetes"
26-
execd_image = "opensandbox/execd:v1.0.12"
26+
execd_image = "opensandbox/execd:v1.0.13"
2727

2828
[kubernetes]
2929
namespace = "default"

examples/code-interpreter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ spec:
104104
- name: opensandbox-bin
105105
mountPath: /opt/opensandbox/bin
106106
- name: execd-installer
107-
image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.12
107+
image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.13
108108
command: [ "/bin/sh", "-c" ]
109109
args:
110110
- |

kubernetes/charts/opensandbox-server/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ configToml: |
6464
6565
[runtime]
6666
type = "kubernetes"
67-
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.12"
67+
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.13"
6868
6969
[kubernetes]
7070
kubeconfig_path = ""

kubernetes/config/samples/sandbox_v1alpha1_pool.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ spec:
3131
- name: opensandbox-bin
3232
mountPath: /opt/opensandbox/bin
3333
- name: execd-installer
34-
image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.12
34+
image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.13
3535
command: [ "/bin/sh", "-c" ]
3636
args:
3737
- |

oseps/0004-secure-container-runtime.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ Extension to `~/.sandbox.toml`. A single `[secure_runtime]` section configures t
180180
```toml
181181
[runtime]
182182
type = "docker" # or "kubernetes"
183-
execd_image = "opensandbox/execd:v1.0.12"
183+
execd_image = "opensandbox/execd:v1.0.13"
184184

185185
# Secure container runtime configuration.
186186
# When enabled, ALL sandboxes on this server use the specified runtime.
@@ -210,7 +210,7 @@ Example 1 — gVisor on Docker:
210210
# ~/.sandbox.toml
211211
[runtime]
212212
type = "docker"
213-
execd_image = "opensandbox/execd:v1.0.12"
213+
execd_image = "opensandbox/execd:v1.0.13"
214214

215215
[secure_runtime]
216216
type = "gvisor"
@@ -224,7 +224,7 @@ Example 2 — Kata Containers (QEMU) on Kubernetes:
224224
# ~/.sandbox.toml
225225
[runtime]
226226
type = "kubernetes"
227-
execd_image = "opensandbox/execd:v1.0.12"
227+
execd_image = "opensandbox/execd:v1.0.13"
228228

229229
[secure_runtime]
230230
type = "kata"

oseps/0007-fast-sandbox-runtime-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ api_key = "your-secret-key"
611611
612612
[runtime]
613613
type = "kubernetes"
614-
execd_image = "opensandbox/execd:v1.0.12"
614+
execd_image = "opensandbox/execd:v1.0.13"
615615
616616
[kubernetes]
617617
namespace = "default"

server/DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ This guide provides comprehensive information for developers working on OpenSand
6161

6262
[runtime]
6363
type = "docker"
64-
execd_image = "opensandbox/execd:v1.0.12"
64+
execd_image = "opensandbox/execd:v1.0.13"
6565

6666
[docker]
6767
network_mode = "host"

server/docker-compose.example.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ configs:
1010
1111
[runtime]
1212
type = "docker"
13-
# execd_image = "opensandbox/execd:v1.0.12"
14-
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.12"
13+
# execd_image = "opensandbox/execd:v1.0.13"
14+
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.13"
1515
1616
[egress]
1717
image = "opensandbox/egress:v1.0.8"

server/opensandbox_server/examples/example.config.k8s.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ level = "INFO"
2929

3030
[runtime]
3131
type = "kubernetes"
32-
execd_image = "opensandbox/execd:v1.0.12"
32+
execd_image = "opensandbox/execd:v1.0.13"
3333

3434
[storage]
3535
# Allowlist of host path prefixes permitted for bind mounts.

server/opensandbox_server/examples/example.config.k8s.zh.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ level = "INFO"
2929

3030
[runtime]
3131
type = "kubernetes"
32-
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.12"
32+
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.13"
3333

3434
[storage]
3535
# 允许进行 bind mount 的宿主机路径前缀白名单。

0 commit comments

Comments
 (0)