-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
28 lines (22 loc) · 820 Bytes
/
env.example
File metadata and controls
28 lines (22 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# OpenClaw Kubernetes Environment Variables
# Copy this file to .env and customize as needed
# Use with: source .env && ./setup.sh
# Kubernetes Configuration
OPENCLAW_NAMESPACE="openclaw"
# Container Images
OPENCLAW_IMAGE="ghcr.io/openclaw/openclaw:latest"
OPENCLAW_BUSYBOX_IMAGE="busybox:latest"
# Gateway Settings
OPENCLAW_GATEWAY_TOKEN=""
# Generate with: openssl rand -hex 32
# Storage Options
# Use hostPath instead of PVC for development (single-node only)
OPENCLAW_USE_HOSTPATH="false"
OPENCLAW_FIX_HOSTPATH_PERMISSIONS="true"
# HostPath directories (only used if OPENCLAW_USE_HOSTPATH=true)
OPENCLAW_CONFIG_HOSTPATH="/var/lib/openclaw/config"
OPENCLAW_WORKSPACE_HOSTPATH="/var/lib/openclaw/workspace"
# Optional: Claude AI Integration
CLAUDE_AI_SESSION_KEY=""
CLAUDE_WEB_SESSION_KEY=""
CLAUDE_WEB_COOKIE=""