Skip to content

Commit 9421fb8

Browse files
committed
fix(openclaw-helm): correct gateway token env var name
GATEWAY_TOKEN → OPENCLAW_GATEWAY_TOKEN to match what the app expects.
1 parent 5912d2a commit 9421fb8

File tree

1 file changed

+2
-2
lines changed
  • openclaw-helm.html

1 file changed

+2
-2
lines changed

openclaw-helm.html/0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ kubectl create namespace openclaw
7676
kubectl create secret generic openclaw-env-secret \
7777
-n openclaw \
7878
--from-literal=ANTHROPIC_API_KEY=your-api-key \
79-
--from-literal=GATEWAY_TOKEN=your-gateway-token
79+
--from-literal=OPENCLAW_GATEWAY_TOKEN=your-gateway-token
8080
```
8181

8282
Add the secret reference to your `values.yaml`:
@@ -241,7 +241,7 @@ metadata:
241241
type: Opaque
242242
stringData:
243243
ANTHROPIC_API_KEY: "your-api-key-here"
244-
GATEWAY_TOKEN: "your-gateway-token-here"
244+
OPENCLAW_GATEWAY_TOKEN: "your-gateway-token-here"
245245
```
246246

247247
Plain Kubernetes Secrets are base64-encoded, not encrypted at rest unless you've configured encryption.

0 commit comments

Comments
 (0)