You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Infrastructure as Code and deployment configurations for Heretek OpenClaw.
Overview
This repository contains Terraform modules, Kubernetes manifests, and Helm charts for deploying Heretek OpenClaw to various cloud providers and on-premises environments.
cd terraform/aws
# Initialize Terraform
terraform init
# Configure variables
cp terraform.tfvars.example terraform.tfvars
# Edit terraform.tfvars with your settings# Plan deployment
terraform plan -out=tfplan
# Apply deployment
terraform apply tfplan
# Output will show access URLs and credentials
GCP Deployment
cd terraform/gcp
# Initialize Terraform
terraform init
# Configure variables
cp terraform.tfvars.example terraform.tfvars
# Plan deployment
terraform plan -out=tfplan
# Apply deployment
terraform apply tfplan
# Check state
terraform state list
# Refresh state
terraform refresh
# Import existing resources if needed
terraform import <resource><id>
Kubernetes Pods Not Starting
# Check pod status
kubectl get pods -n openclaw
# View logs
kubectl logs -n openclaw <pod-name># Describe pod for events
kubectl describe pod -n openclaw <pod-name>