fix: correct helm values structure and full openclaw config

This commit is contained in:
2026-05-02 18:05:21 +02:00
parent 7e3d9207d5
commit d10538a328
@@ -17,19 +17,55 @@ spec:
name: openclaw-secrets name: openclaw-secrets
valuesKey: values.yaml valuesKey: values.yaml
values: values:
app-template: openclaw:
configMode: overwrite configMode: overwrite
app-template:
controllers:
main:
containers:
main:
image:
repository: ghcr.io/openclaw/openclaw
tag: "latest"
envFrom:
- secretRef:
name: openclaw-secrets
configMaps: configMaps:
config: config:
data: data:
openclaw.json: | openclaw.json: |
{ {
"gateway": {
"port": 18789,
"mode": "lan",
"trustedProxies": ["10.0.0.1"],
"controlUi": {
"allowedOrigins": [
"http://localhost:18789",
"http://127.0.0.1:18789"
]
}
},
"agents": { "agents": {
"defaults": { "defaults": {
"workspace": "/home/node/.openclaw/workspace",
"model": { "model": {
"primary": "openrouter/tencent/hy3-preview:free" "primary": "openrouter/tencent/hy3-preview:free"
},
"userTimezone": "Europe/Berlin",
"timeoutSeconds": 600,
"maxConcurrent": 1
},
"list": [
{
"id": "main",
"default": true,
"identity": {
"name": "OpenClaw",
"emoji": "🦞"
} }
} }
]
}, },
"plugins": { "plugins": {
"entries": { "entries": {
@@ -45,13 +81,6 @@ spec:
} }
} }
} }
controllers:
main:
containers:
main:
image:
repository: ghcr.io/openclaw/openclaw
tag: "latest"
persistence: persistence:
data: data:
enabled: true enabled: true