[ci skip] Deploy MoltBot (OpenClaw) AI agent gateway

Add new Kubernetes service for OpenClaw gateway connected to in-cluster
Ollama, with kubectl/terraform/git access for infrastructure management.
Protected behind Authentik SSO.
This commit is contained in:
Viktor Barzin 2026-02-13 22:57:36 +00:00
parent 9df9ab1654
commit c330648b7b
No known key found for this signature in database
GPG key ID: 0EB088298288D958
6 changed files with 337 additions and 1 deletions

View file

@ -153,6 +153,7 @@ variable "slack_channel" { type = string }
variable "affine_postgresql_password" { type = string }
variable "health_postgresql_password" { type = string }
variable "health_secret_key" { type = string }
variable "moltbot_ssh_key" { type = string }
variable "kube_config_path" {
type = string
@ -614,6 +615,7 @@ module "kubernetes_cluster" {
affine_postgresql_password = var.affine_postgresql_password
health_postgresql_password = var.health_postgresql_password
health_secret_key = var.health_secret_key
moltbot_ssh_key = var.moltbot_ssh_key
}