fix clawconfig map
This commit is contained in:
parent
4317e5c552
commit
be24c2e1a1
3 changed files with 84 additions and 3 deletions
|
|
@ -72,8 +72,6 @@ data:
|
|||
]
|
||||
},
|
||||
"cron": { "enabled": true },
|
||||
"requestTimeoutSeconds": 180,
|
||||
"promptCaching": true,
|
||||
"context": {
|
||||
"injectAllMarkdown": false,
|
||||
"curatedFiles": ["SOUL.md", "MEMORY.md", "IDENTITY.md", "USER.md"],
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ resources:
|
|||
# - vllm-l4.yaml
|
||||
- keda-vllm.yaml
|
||||
- pvc.yaml
|
||||
- configmap.yaml
|
||||
- new-configmap.yaml
|
||||
- deployment.yaml
|
||||
- service.yaml
|
||||
- openclaw-secrets.yaml
|
||||
|
|
|
|||
83
apps/base/customer1/openclaw/new-configmap.yaml
Normal file
83
apps/base/customer1/openclaw/new-configmap.yaml
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: openclaw-config
|
||||
namespace: customer1
|
||||
labels:
|
||||
app: openclaw
|
||||
data:
|
||||
openclaw.json: |
|
||||
{
|
||||
"gateway": {
|
||||
"mode": "local",
|
||||
"bind": "lan",
|
||||
"port": 18789,
|
||||
"auth": {
|
||||
"mode": "token"
|
||||
},
|
||||
"controlUi": {
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
|
||||
"channels": {
|
||||
"telegram": {
|
||||
"enabled": true,
|
||||
"dmPolicy": "allowlist",
|
||||
"groupPolicy": "allowlist",
|
||||
"allowFrom": ["7528130947"],
|
||||
"groups": {
|
||||
"*": {
|
||||
"requireMention": false
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
"models": {
|
||||
"providers": {
|
||||
"local-vllm": {
|
||||
"baseUrl": "http://openclaw-brain-service.customer1.svc.cluster.local:8000/v1",
|
||||
"apiKey": "EMPTY",
|
||||
"api": "openai-completions",
|
||||
"models": [
|
||||
{
|
||||
"id": "llmfan46/Qwen3.5-27B-uncensored-heretic",
|
||||
"name": "Qwen3.5-27B-Heretic",
|
||||
"reasoning": true,
|
||||
"contextWindow": 40960
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
"agents": {
|
||||
"defaults": {
|
||||
"model": {
|
||||
"primary": "local-vllm/llmfan46/Qwen3.5-27B-uncensored-heretic",
|
||||
"fallbacks": ["xai/grok-4.1-fast"]
|
||||
},
|
||||
"workspace": "/home/node/.openclaw/workspace",
|
||||
"context": {
|
||||
"injectAllMarkdown": false,
|
||||
"curatedFiles": ["SOUL.md", "MEMORY.md", "IDENTITY.md", "USER.md"],
|
||||
"useMemorySearch": true
|
||||
}
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"id": "default",
|
||||
"name": "OpenClaw Assistant",
|
||||
"workspace": "/home/node/.openclaw/workspace"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
"cron": {
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
AGENTS.md: |
|
||||
# Sirius Claw
|
||||
Professional, precise, dark humor. Running in Lance's GKE cluster.
|
||||
Loading…
Add table
Reference in a new issue