From fdcc51fa47b3209a0003973a3964c1b590cf332f Mon Sep 17 00:00:00 2001 From: Clawdbot Date: Fri, 30 Jan 2026 12:10:58 +0000 Subject: [PATCH] fix: use 'lan' bind mode instead of raw IP --- manifests/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/deployment.yaml b/manifests/deployment.yaml index e488823..79f7e91 100644 --- a/manifests/deployment.yaml +++ b/manifests/deployment.yaml @@ -28,11 +28,11 @@ spec: # Bootstrap if config doesn't exist if [ ! -f ~/.openclaw/openclaw.json ]; then node /app/openclaw.mjs onboard --non-interactive --accept-risk \ - --gateway-port 18789 --gateway-bind custom \ + --gateway-port 18789 --gateway-bind lan \ --skip-daemon --skip-channels --skip-skills --skip-health --skip-ui fi # Run the gateway - exec node /app/openclaw.mjs gateway --port 18789 --bind 0.0.0.0 + exec node /app/openclaw.mjs gateway --port 18789 --bind lan ports: - name: gateway containerPort: 18789