[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:
parent
09024168ba
commit
d7f031bc5f
1 changed files with 8 additions and 0 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue