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
+63 -34
View File
@@ -17,43 +17,72 @@ spec:
name: openclaw-secrets name: openclaw-secrets
valuesKey: values.yaml valuesKey: values.yaml
values: values:
app-template: openclaw:
configMode: overwrite configMode: overwrite
configMaps: app-template:
config: controllers:
data: main:
openclaw.json: | containers:
{ main:
"agents": { image:
"defaults": { repository: ghcr.io/openclaw/openclaw
"model": { tag: "latest"
"primary": "openrouter/tencent/hy3-preview:free" envFrom:
- secretRef:
name: openclaw-secrets
configMaps:
config:
data:
openclaw.json: |
{
"gateway": {
"port": 18789,
"mode": "lan",
"trustedProxies": ["10.0.0.1"],
"controlUi": {
"allowedOrigins": [
"http://localhost:18789",
"http://127.0.0.1:18789"
]
} }
} },
}, "agents": {
"plugins": { "defaults": {
"entries": { "workspace": "/home/node/.openclaw/workspace",
"openrouter": { "model": {
"enabled": true "primary": "openrouter/tencent/hy3-preview:free"
},
"userTimezone": "Europe/Berlin",
"timeoutSeconds": 600,
"maxConcurrent": 1
}, },
"anthropic": { "list": [
"enabled": false {
}, "id": "main",
"browser": { "default": true,
"enabled": true "identity": {
"name": "OpenClaw",
"emoji": "🦞"
}
}
]
},
"plugins": {
"entries": {
"openrouter": {
"enabled": true
},
"anthropic": {
"enabled": false
},
"browser": {
"enabled": true
}
} }
} }
} }
} persistence:
controllers: data:
main: enabled: true
containers: storageClass: longhorn
main: size: 5Gi
image:
repository: ghcr.io/openclaw/openclaw
tag: "latest"
persistence:
data:
enabled: true
storageClass: longhorn
size: 5Gi