Initial OpenClaw GitOps skeleton

This commit is contained in:
Clawdbot
2026-01-30 10:18:11 +00:00
commit 46bf054e0b
11 changed files with 237 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
apiVersion: v1
kind: Secret
metadata:
name: openclaw-config
namespace: openclaw
type: Opaque
stringData:
# IMPORTANT: Fill this in with the OpenClaw gateway config JSON (or whatever the new format is).
# This is a placeholder so Argo has a resource to manage.
openclaw.json: |
{
"agents": {
"defaults": {
"memorySearch": {
"enabled": true,
"provider": "openai",
"model": "BAAI/bge-base-en-v1.5",
"remote": {
"baseUrl": "http://text-embeddings.tei.svc.cluster.local:8080/v1/",
"apiKey": "not-needed",
"batch": {"enabled": false}
}
}
}
}
}