## Context
Deploying new services required manually adding hostnames to
cloudflare_proxied_names/cloudflare_non_proxied_names in config.tfvars —
a separate file from the service stack. This was frequently forgotten,
leaving services unreachable externally.
## This change:
- Add `dns_type` parameter to `ingress_factory` and `reverse_proxy/factory`
modules. Setting `dns_type = "proxied"` or `"non-proxied"` auto-creates
the Cloudflare DNS record (CNAME to tunnel or A/AAAA to public IP).
- Simplify cloudflared tunnel from 100 per-hostname rules to wildcard
`*.viktorbarzin.me → Traefik`. Traefik still handles host-based routing.
- Add global Cloudflare provider via terragrunt.hcl (separate
cloudflare_provider.tf with Vault-sourced API key).
- Migrate 118 hostnames from centralized config.tfvars to per-service
dns_type. 17 hostnames remain centrally managed (Helm ingresses,
special cases).
- Update docs, AGENTS.md, CLAUDE.md, dns.md runbook.
```
BEFORE AFTER
config.tfvars (manual list) stacks/<svc>/main.tf
| module "ingress" {
v dns_type = "proxied"
stacks/cloudflared/ }
for_each = list |
cloudflare_record auto-creates
tunnel per-hostname cloudflare_record + annotation
```
## What is NOT in this change:
- Uptime Kuma monitor migration (still reads from config.tfvars)
- 17 remaining centrally-managed hostnames (Helm, special cases)
- Removal of allow_overwrite (keep until migration confirmed stable)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
426 lines
10 KiB
HCL
426 lines
10 KiB
HCL
variable "tls_secret_name" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
resource "kubernetes_namespace" "beads" {
|
|
metadata {
|
|
name = "beads-server"
|
|
labels = {
|
|
tier = local.tiers.aux
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "kubernetes_persistent_volume_claim" "dolt_data" {
|
|
wait_until_bound = false
|
|
metadata {
|
|
name = "dolt-data"
|
|
namespace = kubernetes_namespace.beads.metadata[0].name
|
|
annotations = {
|
|
"resize.topolvm.io/threshold" = "80%"
|
|
"resize.topolvm.io/increase" = "100%"
|
|
"resize.topolvm.io/storage_limit" = "10Gi"
|
|
}
|
|
}
|
|
spec {
|
|
access_modes = ["ReadWriteOnce"]
|
|
storage_class_name = "proxmox-lvm"
|
|
resources {
|
|
requests = { storage = "2Gi" }
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "kubernetes_config_map" "dolt_init" {
|
|
metadata {
|
|
name = "dolt-init"
|
|
namespace = kubernetes_namespace.beads.metadata[0].name
|
|
}
|
|
data = {
|
|
"01-create-beads-user.sql" = <<-EOT
|
|
CREATE USER IF NOT EXISTS 'beads'@'%' IDENTIFIED BY '';
|
|
GRANT ALL PRIVILEGES ON *.* TO 'beads'@'%' WITH GRANT OPTION;
|
|
EOT
|
|
}
|
|
}
|
|
|
|
resource "kubernetes_deployment" "dolt" {
|
|
metadata {
|
|
name = "dolt"
|
|
namespace = kubernetes_namespace.beads.metadata[0].name
|
|
labels = {
|
|
app = "dolt"
|
|
tier = local.tiers.aux
|
|
}
|
|
}
|
|
spec {
|
|
replicas = 1
|
|
strategy {
|
|
type = "Recreate"
|
|
}
|
|
selector {
|
|
match_labels = {
|
|
app = "dolt"
|
|
}
|
|
}
|
|
template {
|
|
metadata {
|
|
labels = {
|
|
app = "dolt"
|
|
}
|
|
}
|
|
spec {
|
|
container {
|
|
name = "dolt"
|
|
image = "dolthub/dolt-sql-server:latest"
|
|
|
|
port {
|
|
name = "mysql"
|
|
container_port = 3306
|
|
}
|
|
|
|
env {
|
|
name = "DOLT_ROOT_HOST"
|
|
value = "%"
|
|
}
|
|
|
|
volume_mount {
|
|
name = "dolt-data"
|
|
mount_path = "/var/lib/dolt"
|
|
}
|
|
volume_mount {
|
|
name = "init-scripts"
|
|
mount_path = "/docker-entrypoint-initdb.d"
|
|
read_only = true
|
|
}
|
|
|
|
startup_probe {
|
|
tcp_socket {
|
|
port = 3306
|
|
}
|
|
failure_threshold = 30
|
|
period_seconds = 2
|
|
}
|
|
liveness_probe {
|
|
tcp_socket {
|
|
port = 3306
|
|
}
|
|
initial_delay_seconds = 10
|
|
period_seconds = 30
|
|
}
|
|
readiness_probe {
|
|
tcp_socket {
|
|
port = 3306
|
|
}
|
|
initial_delay_seconds = 5
|
|
period_seconds = 10
|
|
}
|
|
|
|
resources {
|
|
requests = {
|
|
memory = "256Mi"
|
|
cpu = "50m"
|
|
}
|
|
limits = {
|
|
memory = "512Mi"
|
|
}
|
|
}
|
|
}
|
|
|
|
volume {
|
|
name = "dolt-data"
|
|
persistent_volume_claim {
|
|
claim_name = kubernetes_persistent_volume_claim.dolt_data.metadata[0].name
|
|
}
|
|
}
|
|
volume {
|
|
name = "init-scripts"
|
|
config_map {
|
|
name = kubernetes_config_map.dolt_init.metadata[0].name
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
lifecycle {
|
|
ignore_changes = [
|
|
spec[0].template[0].spec[0].dns_config
|
|
]
|
|
}
|
|
}
|
|
|
|
resource "kubernetes_service" "dolt" {
|
|
metadata {
|
|
name = "dolt"
|
|
namespace = kubernetes_namespace.beads.metadata[0].name
|
|
labels = {
|
|
app = "dolt"
|
|
}
|
|
annotations = {
|
|
"metallb.universe.tf/loadBalancerIPs" = "10.0.20.200"
|
|
"metallb.io/allow-shared-ip" = "shared"
|
|
}
|
|
}
|
|
spec {
|
|
type = "LoadBalancer"
|
|
external_traffic_policy = "Cluster"
|
|
selector = {
|
|
app = "dolt"
|
|
}
|
|
port {
|
|
name = "mysql"
|
|
port = 3306
|
|
target_port = 3306
|
|
}
|
|
}
|
|
}
|
|
|
|
# ── Dolt Workbench (web UI) ──
|
|
|
|
resource "kubernetes_config_map" "workbench_store" {
|
|
metadata {
|
|
name = "workbench-store"
|
|
namespace = kubernetes_namespace.beads.metadata[0].name
|
|
}
|
|
data = {
|
|
"store.json" = jsonencode([{
|
|
name = "beads"
|
|
connectionUrl = "mysql://beads@dolt.beads-server.svc.cluster.local:3306/code"
|
|
hideDoltFeatures = false
|
|
useSSL = false
|
|
type = "mysql"
|
|
}])
|
|
}
|
|
}
|
|
|
|
resource "kubernetes_deployment" "workbench" {
|
|
metadata {
|
|
name = "dolt-workbench"
|
|
namespace = kubernetes_namespace.beads.metadata[0].name
|
|
labels = {
|
|
app = "dolt-workbench"
|
|
tier = local.tiers.aux
|
|
}
|
|
}
|
|
spec {
|
|
replicas = 1
|
|
selector {
|
|
match_labels = {
|
|
app = "dolt-workbench"
|
|
}
|
|
}
|
|
template {
|
|
metadata {
|
|
labels = {
|
|
app = "dolt-workbench"
|
|
}
|
|
}
|
|
spec {
|
|
init_container {
|
|
name = "seed-config"
|
|
image = "dolthub/dolt-workbench:latest"
|
|
command = ["sh", "-c", <<-EOT
|
|
# Seed connection store
|
|
cp /config/store.json /store/store.json
|
|
# Copy static JS to writable volume and patch GraphQL URL
|
|
cp -r /app/web/.next/static/* /static/
|
|
for f in /static/chunks/pages/_app-*.js; do
|
|
sed -i 's|http://localhost:9002/graphql|/graphql|g' "$f"
|
|
done
|
|
echo "Patched GraphQL URL and store path"
|
|
EOT
|
|
]
|
|
volume_mount {
|
|
name = "store-config"
|
|
mount_path = "/config"
|
|
read_only = true
|
|
}
|
|
volume_mount {
|
|
name = "store"
|
|
mount_path = "/store"
|
|
}
|
|
volume_mount {
|
|
name = "static-patched"
|
|
mount_path = "/static"
|
|
}
|
|
}
|
|
|
|
container {
|
|
name = "workbench"
|
|
image = "dolthub/dolt-workbench:latest"
|
|
command = ["sh", "-c", <<-EOT
|
|
# Patch GraphQL server to listen on 0.0.0.0 (IPv4) — Node 18+ defaults to IPv6
|
|
sed -i 's|app.listen(9002)|app.listen(9002,"0.0.0.0")|g' /app/graphql-server/dist/main.js
|
|
# Start PM2 (the default entrypoint)
|
|
exec pm2-runtime /app/process.yml
|
|
EOT
|
|
]
|
|
|
|
port {
|
|
name = "http"
|
|
container_port = 3000
|
|
}
|
|
port {
|
|
name = "graphql"
|
|
container_port = 9002
|
|
}
|
|
|
|
env {
|
|
name = "NODE_OPTIONS"
|
|
value = "--dns-result-order=ipv4first"
|
|
}
|
|
|
|
volume_mount {
|
|
name = "store"
|
|
mount_path = "/app/graphql-server/store"
|
|
}
|
|
volume_mount {
|
|
name = "static-patched"
|
|
mount_path = "/app/web/.next/static"
|
|
}
|
|
|
|
startup_probe {
|
|
http_get {
|
|
path = "/"
|
|
port = 3000
|
|
}
|
|
failure_threshold = 30
|
|
period_seconds = 2
|
|
}
|
|
liveness_probe {
|
|
http_get {
|
|
path = "/"
|
|
port = 3000
|
|
}
|
|
initial_delay_seconds = 10
|
|
period_seconds = 30
|
|
}
|
|
readiness_probe {
|
|
http_get {
|
|
path = "/"
|
|
port = 3000
|
|
}
|
|
initial_delay_seconds = 5
|
|
period_seconds = 10
|
|
}
|
|
|
|
resources {
|
|
requests = {
|
|
memory = "128Mi"
|
|
cpu = "10m"
|
|
}
|
|
limits = {
|
|
memory = "512Mi"
|
|
}
|
|
}
|
|
}
|
|
|
|
volume {
|
|
name = "store-config"
|
|
config_map {
|
|
name = kubernetes_config_map.workbench_store.metadata[0].name
|
|
}
|
|
}
|
|
volume {
|
|
name = "store"
|
|
empty_dir {}
|
|
}
|
|
volume {
|
|
name = "static-patched"
|
|
empty_dir {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
lifecycle {
|
|
ignore_changes = [
|
|
spec[0].template[0].spec[0].dns_config
|
|
]
|
|
}
|
|
}
|
|
|
|
resource "kubernetes_service" "workbench" {
|
|
metadata {
|
|
name = "dolt-workbench"
|
|
namespace = kubernetes_namespace.beads.metadata[0].name
|
|
labels = {
|
|
app = "dolt-workbench"
|
|
}
|
|
}
|
|
spec {
|
|
selector = {
|
|
app = "dolt-workbench"
|
|
}
|
|
port {
|
|
name = "http"
|
|
port = 80
|
|
target_port = 3000
|
|
}
|
|
port {
|
|
name = "graphql"
|
|
port = 9002
|
|
target_port = 9002
|
|
}
|
|
}
|
|
}
|
|
|
|
module "tls_secret" {
|
|
source = "../../modules/kubernetes/setup_tls_secret"
|
|
namespace = kubernetes_namespace.beads.metadata[0].name
|
|
tls_secret_name = var.tls_secret_name
|
|
}
|
|
|
|
module "ingress" {
|
|
source = "../../modules/kubernetes/ingress_factory"
|
|
dns_type = "proxied"
|
|
namespace = kubernetes_namespace.beads.metadata[0].name
|
|
name = "dolt-workbench"
|
|
tls_secret_name = var.tls_secret_name
|
|
protected = true
|
|
extra_annotations = {
|
|
"gethomepage.dev/enabled" = "true"
|
|
"gethomepage.dev/name" = "Dolt Workbench"
|
|
"gethomepage.dev/description" = "Beads task database UI"
|
|
"gethomepage.dev/icon" = "dolt.png"
|
|
"gethomepage.dev/group" = "Core Platform"
|
|
"gethomepage.dev/pod-selector" = ""
|
|
}
|
|
}
|
|
|
|
# GraphQL API ingress — the frontend JS hardcodes localhost:9002/graphql,
|
|
# but we rewrite the browser request to hit the same hostname on /graphql
|
|
# routed to port 9002.
|
|
resource "kubernetes_ingress_v1" "graphql" {
|
|
metadata {
|
|
name = "dolt-workbench-graphql"
|
|
namespace = kubernetes_namespace.beads.metadata[0].name
|
|
annotations = {
|
|
"traefik.ingress.kubernetes.io/router.middlewares" = "traefik-authentik-forward-auth@kubernetescrd"
|
|
}
|
|
}
|
|
spec {
|
|
ingress_class_name = "traefik"
|
|
tls {
|
|
hosts = ["dolt-workbench.viktorbarzin.me"]
|
|
secret_name = var.tls_secret_name
|
|
}
|
|
rule {
|
|
host = "dolt-workbench.viktorbarzin.me"
|
|
http {
|
|
path {
|
|
path = "/graphql"
|
|
path_type = "Exact"
|
|
backend {
|
|
service {
|
|
name = kubernetes_service.workbench.metadata[0].name
|
|
port {
|
|
number = 9002
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|