Skip to content

Commit 68a5710

Browse files
chore: bump execd to v1.0.18
1 parent 2772623 commit 68a5710

15 files changed

Lines changed: 22 additions & 22 deletions

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.17"
26+
execd_image = "opensandbox/execd:v1.0.18"
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.17
107+
image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.18
108108
command: [ "/bin/sh", "-c" ]
109109
args:
110110
- |

examples/windows/pool-win-example.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ spec:
5858
command:
5959
- /bin/sh
6060
- -c
61-
image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.17
61+
image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.18
6262
name: execd-installer
6363
volumeMounts:
6464
- mountPath: /opt/opensandbox/bin

kubernetes/charts/opensandbox-server/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ configToml: |
8585
8686
[runtime]
8787
type = "kubernetes"
88-
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.17"
88+
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.18"
8989
9090
[kubernetes]
9191
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.17
34+
image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.18
3535
command: [ "/bin/sh", "-c" ]
3636
args:
3737
- |

kubernetes/config/samples/sandbox_v1alpha1_pool_restart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ spec:
5656
command:
5757
- /bin/sh
5858
- -c
59-
image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.17
59+
image: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.18
6060
name: execd-installer
6161
volumeMounts:
6262
- mountPath: /opt/opensandbox/bin

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.17"
183+
execd_image = "opensandbox/execd:v1.0.18"
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.17"
213+
execd_image = "opensandbox/execd:v1.0.18"
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.17"
227+
execd_image = "opensandbox/execd:v1.0.18"
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.17"
614+
execd_image = "opensandbox/execd:v1.0.18"
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.17"
64+
execd_image = "opensandbox/execd:v1.0.18"
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.17"
14-
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.17"
13+
# execd_image = "opensandbox/execd:v1.0.18"
14+
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.18"
1515
1616
[egress]
1717
image = "opensandbox/egress:v1.0.12"

0 commit comments

Comments
 (0)