[ci skip] openclaw: set workspace + enable elevated + native commands

- Set workspace to /workspace/infra (was defaulting to ~/.openclaw/workspace)
- Enable tools.elevated for unrestricted access
- Enable commands.native and commands.nativeSkills
- All tools, commands, and skills now fully accessible
This commit is contained in:
Viktor Barzin 2026-03-01 17:12:03 +00:00
parent 09024168ba
commit d7f031bc5f
No known key found for this signature in database
GPG key ID: 0EB088298288D958

View file

@ -89,6 +89,7 @@ resource "kubernetes_config_map" "openclaw_config" {
defaults = { defaults = {
contextTokens = 1000000 contextTokens = 1000000
bootstrapMaxChars = 30000 bootstrapMaxChars = 30000
workspace = "/workspace/infra"
sandbox = { sandbox = {
mode = "off" mode = "off"
} }
@ -114,6 +115,9 @@ resource "kubernetes_config_map" "openclaw_config" {
tools = { tools = {
profile = "full" profile = "full"
deny = [] deny = []
elevated = {
enabled = true
}
exec = { exec = {
host = "gateway" host = "gateway"
security = "full" security = "full"
@ -134,6 +138,10 @@ resource "kubernetes_config_map" "openclaw_config" {
} }
} }
} }
commands = {
native = true
nativeSkills = true
}
channels = { channels = {
telegram = { telegram = {
enabled = true enabled = true