项目文件夹

文件
wehub-resource-sync e0e362d700
SDK Tests / changes (push) Successful in 2m29s
Real E2E Tests / changes (push) Successful in 2m29s
Deploy Docs Pages / build (push) Has been cancelled
Deploy Docs Pages / deploy (push) Has been cancelled
Real E2E Tests / JavaScript E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / Python E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / Java E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / C# E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / Go E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / Real E2E CI (push) Has been cancelled
SDK Tests / SDK CI (push) Has been cancelled
SDK Tests / CLI Tests (push) Has been cancelled
SDK Tests / Python SDK Quality (code-interpreter) (push) Has been cancelled
SDK Tests / Python SDK Quality (sandbox) (push) Has been cancelled
SDK Tests / Python SDK Tests (code-interpreter) (push) Has been cancelled
SDK Tests / JavaScript SDK Quality And Tests (code-interpreter) (push) Has been cancelled
SDK Tests / JavaScript SDK Quality And Tests (sandbox) (push) Has been cancelled
SDK Tests / Python SDK Tests (sandbox) (push) Has been cancelled
SDK Tests / CLI Quality (push) Has been cancelled
SDK Tests / Kotlin SDK Quality And Tests (sandbox) (push) Has been cancelled
SDK Tests / Kotlin SDK Quality And Tests (code-interpreter) (push) Has been cancelled
SDK Tests / C# SDK Quality And Tests (code-interpreter) (push) Has been cancelled
SDK Tests / C# SDK Quality And Tests (sandbox) (push) Has been cancelled
SDK Tests / Go SDK Quality And Tests (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:39:33 +08:00

103 行
2.7 KiB
YAML

# Copyright 2026 Alibaba Group Holding Ltd.
# Default values for opensandbox-server.
# -- Override the name of the chart
nameOverride: ""
# -- Resource names and app.kubernetes.io/name are fixed to this value, independent of release name
fullnameOverride: "opensandbox-server"
# -- Override the namespace (default: opensandbox-system)
namespaceOverride: ""
# -- Image pull secrets for the server deployment. Each entry: {name: <secret-name>}.
imagePullSecrets: []
# Server configuration
server:
# -- Additional environment variables for the server container.
env: []
# - name: OPENSANDBOX_SERVER_API_KEY
# valueFrom:
# secretKeyRef:
# name: opensandbox-api-key
# key: api-key
# -- Server image configuration
image:
repository: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/server
tag: "v0.2.1"
# -- Number of server replicas
replicaCount: 2
# -- Resource requests and limits
resources:
limits:
cpu: "2"
memory: 8Gi
requests:
cpu: "1"
memory: 4Gi
tolerations: []
affinity: {}
volumeMounts: []
volumes: []
# Gateway (components/ingress): when enabled, writes config [ingress] and deploys the gateway
gateway:
enabled: false
host: opensandbox.example.com
gatewayRouteMode: "header"
image:
repository: sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/ingress
tag: "v1.0.10"
replicaCount: 2
port: 28888
dataplaneNamespace: "opensandbox"
providerType: "batchsandbox"
logLevel: "info"
resources:
limits:
cpu: "2"
memory: 8Gi
requests:
cpu: "1"
memory: 4Gi
# OSEP-0011 signing keys shared between server and ingress.
# When keys are provided, the server signs route tokens with the active key
# and the ingress gateway verifies them.
secureAccess:
activeKey: ""
# List of signing keys. Each entry: { key_id: "a", key: "<base64-secret>" }.
# key_id must be exactly one character in [0-9a-z].
keys: []
# -- Server config (TOML). Mounted at /etc/opensandbox/config.toml.
configToml: |
[server]
host = "0.0.0.0"
port = 80
api_key = ""
[log]
level = "INFO"
[runtime]
type = "kubernetes"
execd_image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/execd:v1.0.21"
[kubernetes]
kubeconfig_path = ""
namespace = "opensandbox"
informer_enabled = true
informer_resync_seconds = 300
informer_watch_timeout_seconds = 60
snapshot_create_timeout_seconds = 900
workload_provider = "batchsandbox"
batchsandbox_template_file = "/etc/opensandbox/example.batchsandbox-template.yaml"
[egress]
image = "sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/egress:v1.1.4"
mode = "dns+nft"