## Context Wave 3B-continued: the Goldilocks VPA dashboard (stacks/vpa) runs a Kyverno ClusterPolicy `goldilocks-vpa-auto-mode` that mutates every namespace with `metadata.labels["goldilocks.fairwinds.com/vpa-update-mode"] = "off"`. This is intentional — Terraform owns container resource limits, and Goldilocks should only provide recommendations, never auto-update. The label is how Goldilocks decides per-namespace whether to run its VPA in `off` mode. Effect on Terraform: every `kubernetes_namespace` resource shows the label as pending-removal (`-> null`) on every `scripts/tg plan`. Dawarich survey 2026-04-18 confirmed the drift. Cluster-side count: 88 namespaces carry the label (`kubectl get ns -o json | jq ... | wc -l`). Every TF-managed namespace is affected. This commit brings the intentional admission drift under the same `# KYVERNO_LIFECYCLE_V1` discoverability marker introduced inc9d221d5for the ndots dns_config pattern. The marker now stands generically for any Kyverno admission-webhook drift suppression; the inline comment records which specific policy stamps which specific field so future grep audits show why each suppression exists. ## This change 107 `.tf` files touched — every stack's `resource "kubernetes_namespace"` resource gets: ```hcl lifecycle { # KYVERNO_LIFECYCLE_V1: goldilocks-vpa-auto-mode ClusterPolicy stamps this label on every namespace ignore_changes = [metadata[0].labels["goldilocks.fairwinds.com/vpa-update-mode"]] } ``` Injection was done with a brace-depth-tracking Python pass (`/tmp/add_goldilocks_ignore.py`): match `^resource "kubernetes_namespace" ` → track `{` / `}` until the outermost closing brace → insert the lifecycle block before the closing brace. The script is idempotent (skips any file that already mentions `goldilocks.fairwinds.com/vpa-update-mode`) so re-running is safe. Vault stack picked up 2 namespaces in the same file (k8s-users produces one, plus a second explicit ns) — confirmed via file diff (+8 lines). ## What is NOT in this change - `stacks/trading-bot/main.tf` — entire file is `/* … */` commented out (paused 2026-04-06 per user decision). Reverted after the script ran. - `stacks/_template/main.tf.example` — per-stack skeleton, intentionally minimal. User keeps it that way. Not touched by the script (file has no real `resource "kubernetes_namespace"` — only a placeholder comment). - `.terraform/` copies (e.g. `stacks/metallb/.terraform/modules/...`) — gitignored, won't commit; the live path was edited. - `terraform fmt` cleanup of adjacent pre-existing alignment issues in authentik, freedify, hermes-agent, nvidia, vault, meshcentral. Reverted to keep the commit scoped to the Goldilocks sweep. Those files will need a separate fmt-only commit or will be cleaned up on next real apply to that stack. ## Verification Dawarich (one of the hundred-plus touched stacks) showed the pattern before and after: ``` $ cd stacks/dawarich && ../../scripts/tg plan Before: Plan: 0 to add, 2 to change, 0 to destroy. # kubernetes_namespace.dawarich will be updated in-place (goldilocks.fairwinds.com/vpa-update-mode -> null) # module.tls_secret.kubernetes_secret.tls_secret will be updated in-place (Kyverno generate.* labels — fixed in8d94688d) After: No changes. Your infrastructure matches the configuration. ``` Injection count check: ``` $ rg -c 'KYVERNO_LIFECYCLE_V1: goldilocks-vpa-auto-mode' stacks/ | awk -F: '{s+=$2} END {print s}' 108 ``` ## Reproduce locally 1. `git pull` 2. Pick any stack: `cd stacks/<name> && ../../scripts/tg plan` 3. Expect: no drift on the namespace's goldilocks.fairwinds.com/vpa-update-mode label. Closes: code-dwx Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
593 lines
16 KiB
HCL
593 lines
16 KiB
HCL
data "vault_kv_secret_v2" "secrets" {
|
|
mount = "secret"
|
|
name = "claude-agent-service"
|
|
}
|
|
|
|
data "vault_kv_secret_v2" "viktor_secrets" {
|
|
mount = "secret"
|
|
name = "viktor"
|
|
}
|
|
|
|
locals {
|
|
namespace = "claude-agent"
|
|
image = "registry.viktorbarzin.me/claude-agent-service"
|
|
image_tag = "0c24c9b6"
|
|
labels = {
|
|
app = "claude-agent-service"
|
|
}
|
|
}
|
|
|
|
# --- Namespace ---
|
|
|
|
resource "kubernetes_namespace" "claude_agent" {
|
|
metadata {
|
|
name = local.namespace
|
|
labels = {
|
|
tier = local.tiers.aux
|
|
"resource-governance/custom-limitrange" = "true"
|
|
"resource-governance/custom-quota" = "true"
|
|
}
|
|
}
|
|
lifecycle {
|
|
# KYVERNO_LIFECYCLE_V1: goldilocks-vpa-auto-mode ClusterPolicy stamps this label on every namespace
|
|
ignore_changes = [metadata[0].labels["goldilocks.fairwinds.com/vpa-update-mode"]]
|
|
}
|
|
}
|
|
|
|
# --- Secrets ---
|
|
|
|
resource "kubernetes_manifest" "external_secret" {
|
|
manifest = {
|
|
apiVersion = "external-secrets.io/v1beta1"
|
|
kind = "ExternalSecret"
|
|
metadata = {
|
|
name = "claude-agent-secrets"
|
|
namespace = local.namespace
|
|
}
|
|
spec = {
|
|
refreshInterval = "15m"
|
|
secretStoreRef = {
|
|
name = "vault-kv"
|
|
kind = "ClusterSecretStore"
|
|
}
|
|
target = {
|
|
name = "claude-agent-secrets"
|
|
}
|
|
data = [
|
|
{
|
|
secretKey = "GITHUB_TOKEN"
|
|
remoteRef = {
|
|
key = "viktor"
|
|
property = "github_pat"
|
|
}
|
|
},
|
|
{
|
|
secretKey = "API_BEARER_TOKEN"
|
|
remoteRef = {
|
|
key = "claude-agent-service"
|
|
property = "api_bearer_token"
|
|
}
|
|
},
|
|
{
|
|
# Long-lived OAuth token (1-year) from `claude setup-token`.
|
|
# Preferred over the short-lived .credentials.json — CLI picks this up and
|
|
# skips the refresh flow entirely. Rotate yearly; alert 30d before expiry.
|
|
secretKey = "CLAUDE_CODE_OAUTH_TOKEN"
|
|
remoteRef = {
|
|
key = "claude-agent-service"
|
|
property = "claude_oauth_token"
|
|
}
|
|
},
|
|
]
|
|
}
|
|
}
|
|
depends_on = [kubernetes_namespace.claude_agent]
|
|
}
|
|
|
|
# SOPS age key for terraform state decryption
|
|
resource "kubernetes_secret" "sops_age_key" {
|
|
metadata {
|
|
name = "sops-age-key"
|
|
namespace = kubernetes_namespace.claude_agent.metadata[0].name
|
|
}
|
|
data = {
|
|
"keys.txt" = data.vault_kv_secret_v2.viktor_secrets.data["sops_age_key_devvm"]
|
|
}
|
|
type = "Opaque"
|
|
}
|
|
|
|
# Claude OAuth credentials (for claude -p)
|
|
resource "kubernetes_secret" "claude_credentials" {
|
|
metadata {
|
|
name = "claude-credentials"
|
|
namespace = kubernetes_namespace.claude_agent.metadata[0].name
|
|
}
|
|
data = {
|
|
".credentials.json" = data.vault_kv_secret_v2.secrets.data["claude_credentials_json"]
|
|
}
|
|
type = "Opaque"
|
|
}
|
|
|
|
# git-crypt key for repo decryption
|
|
resource "kubernetes_config_map" "git_crypt_key" {
|
|
metadata {
|
|
name = "git-crypt-key"
|
|
namespace = kubernetes_namespace.claude_agent.metadata[0].name
|
|
}
|
|
binary_data = {
|
|
"key" = filebase64("${path.root}/../../.git/git-crypt/keys/default")
|
|
}
|
|
}
|
|
|
|
# --- RBAC ---
|
|
|
|
resource "kubernetes_service_account" "claude_agent" {
|
|
metadata {
|
|
name = "claude-agent"
|
|
namespace = kubernetes_namespace.claude_agent.metadata[0].name
|
|
}
|
|
}
|
|
|
|
resource "kubernetes_cluster_role" "claude_agent" {
|
|
metadata {
|
|
name = "claude-agent"
|
|
}
|
|
|
|
rule {
|
|
verbs = ["get", "list", "watch"]
|
|
api_groups = ["", "apps", "batch"]
|
|
resources = ["pods", "pods/log", "nodes", "events", "deployments", "services", "namespaces", "jobs", "cronjobs", "configmaps", "replicasets", "statefulsets", "daemonsets"]
|
|
}
|
|
|
|
rule {
|
|
verbs = ["patch", "update"]
|
|
api_groups = ["apps"]
|
|
resources = ["deployments"]
|
|
}
|
|
|
|
rule {
|
|
verbs = ["create"]
|
|
api_groups = [""]
|
|
resources = ["pods/exec"]
|
|
}
|
|
}
|
|
|
|
resource "kubernetes_cluster_role_binding" "claude_agent" {
|
|
metadata {
|
|
name = "claude-agent"
|
|
}
|
|
|
|
subject {
|
|
kind = "ServiceAccount"
|
|
name = kubernetes_service_account.claude_agent.metadata[0].name
|
|
namespace = kubernetes_namespace.claude_agent.metadata[0].name
|
|
}
|
|
|
|
role_ref {
|
|
api_group = "rbac.authorization.k8s.io"
|
|
kind = "ClusterRole"
|
|
name = kubernetes_cluster_role.claude_agent.metadata[0].name
|
|
}
|
|
}
|
|
|
|
# --- Storage ---
|
|
|
|
resource "kubernetes_persistent_volume_claim" "workspace" {
|
|
wait_until_bound = false
|
|
metadata {
|
|
name = "claude-agent-workspace-encrypted"
|
|
namespace = kubernetes_namespace.claude_agent.metadata[0].name
|
|
annotations = {
|
|
"resize.topolvm.io/threshold" = "80%"
|
|
"resize.topolvm.io/increase" = "100%"
|
|
"resize.topolvm.io/storage_limit" = "20Gi"
|
|
}
|
|
}
|
|
spec {
|
|
access_modes = ["ReadWriteOnce"]
|
|
storage_class_name = "proxmox-lvm-encrypted"
|
|
resources {
|
|
requests = {
|
|
storage = "10Gi"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
# --- Deployment ---
|
|
|
|
resource "kubernetes_deployment" "claude_agent" {
|
|
metadata {
|
|
name = "claude-agent-service"
|
|
namespace = kubernetes_namespace.claude_agent.metadata[0].name
|
|
labels = local.labels
|
|
}
|
|
|
|
spec {
|
|
replicas = 1
|
|
strategy {
|
|
type = "Recreate"
|
|
}
|
|
|
|
selector {
|
|
match_labels = local.labels
|
|
}
|
|
|
|
template {
|
|
metadata {
|
|
labels = local.labels
|
|
}
|
|
|
|
spec {
|
|
service_account_name = kubernetes_service_account.claude_agent.metadata[0].name
|
|
|
|
image_pull_secrets {
|
|
name = "registry-credentials"
|
|
}
|
|
|
|
security_context {
|
|
run_as_user = 1000
|
|
run_as_group = 1000
|
|
fs_group = 1000
|
|
}
|
|
|
|
# Fix workspace ownership (PVC may have root-owned files from prior run)
|
|
init_container {
|
|
name = "fix-perms"
|
|
image = "busybox:1.37"
|
|
command = ["sh", "-c", "chown -R 1000:1000 /workspace"]
|
|
security_context {
|
|
run_as_user = 0
|
|
}
|
|
volume_mount {
|
|
name = "workspace"
|
|
mount_path = "/workspace"
|
|
}
|
|
resources {
|
|
requests = {
|
|
memory = "32Mi"
|
|
}
|
|
limits = {
|
|
memory = "64Mi"
|
|
}
|
|
}
|
|
}
|
|
|
|
# Copy Claude credentials to writable volume (CLI needs to refresh OAuth tokens)
|
|
init_container {
|
|
name = "copy-claude-creds"
|
|
image = "busybox:1.37"
|
|
command = ["sh", "-c", "cp /secrets/claude/.credentials.json /home/agent/.claude/.credentials.json && chown 1000:1000 /home/agent/.claude/.credentials.json"]
|
|
security_context {
|
|
run_as_user = 0
|
|
}
|
|
volume_mount {
|
|
name = "claude-credentials-secret"
|
|
mount_path = "/secrets/claude"
|
|
}
|
|
volume_mount {
|
|
name = "claude-home"
|
|
mount_path = "/home/agent/.claude"
|
|
}
|
|
resources {
|
|
requests = {
|
|
memory = "32Mi"
|
|
}
|
|
limits = {
|
|
memory = "64Mi"
|
|
}
|
|
}
|
|
}
|
|
|
|
# Init: clone repo + unlock git-crypt on first run
|
|
init_container {
|
|
name = "git-init"
|
|
image = "${local.image}:${local.image_tag}"
|
|
command = ["sh", "-c", <<-EOF
|
|
set -e
|
|
|
|
# Configure git with HTTPS + PAT
|
|
git config --global user.name "Claude Agent Service"
|
|
git config --global user.email "claude-agent@viktorbarzin.me"
|
|
git config --global --add safe.directory /workspace/infra
|
|
git config --global url."https://$${GITHUB_TOKEN}@github.com/".insteadOf "git@github.com:"
|
|
git config --global url."https://$${GITHUB_TOKEN}@github.com/".insteadOf "https://github.com/"
|
|
|
|
# Clone or update repo
|
|
if [ ! -d /workspace/infra/.git ]; then
|
|
git clone https://$${GITHUB_TOKEN}@github.com/ViktorBarzin/infra.git /workspace/infra
|
|
else
|
|
cd /workspace/infra
|
|
git fetch origin
|
|
git reset --hard origin/master
|
|
fi
|
|
|
|
# Unlock git-crypt
|
|
cd /workspace/infra
|
|
git-crypt unlock /secrets/git-crypt/key || true
|
|
EOF
|
|
]
|
|
|
|
env_from {
|
|
secret_ref {
|
|
name = "claude-agent-secrets"
|
|
}
|
|
}
|
|
|
|
volume_mount {
|
|
name = "workspace"
|
|
mount_path = "/workspace"
|
|
}
|
|
volume_mount {
|
|
name = "git-crypt-key"
|
|
mount_path = "/secrets/git-crypt"
|
|
}
|
|
|
|
resources {
|
|
requests = {
|
|
cpu = "100m"
|
|
memory = "256Mi"
|
|
}
|
|
limits = {
|
|
memory = "512Mi"
|
|
}
|
|
}
|
|
}
|
|
|
|
# Seed beads metadata + beads-task-runner agent into runtime volumes.
|
|
# The Dockerfile stages these files at /usr/share/agent-seed/ (image
|
|
# layer, never mounted). Both /workspace (PVC) and /home/agent/.claude
|
|
# (emptyDir) are volume mounts that hide any image-layer content, so
|
|
# the files have to be copied in at pod start. Also creates the
|
|
# scratch directory the beads-task-runner rails expect.
|
|
init_container {
|
|
name = "seed-beads-agent"
|
|
image = "${local.image}:${local.image_tag}"
|
|
command = ["sh", "-c", <<-EOT
|
|
set -e
|
|
mkdir -p /workspace/.beads /workspace/scratch /home/agent/.claude/agents
|
|
cp /usr/share/agent-seed/beads-metadata.json /workspace/.beads/metadata.json
|
|
cp /usr/share/agent-seed/beads-task-runner.md /home/agent/.claude/agents/beads-task-runner.md
|
|
EOT
|
|
]
|
|
|
|
volume_mount {
|
|
name = "workspace"
|
|
mount_path = "/workspace"
|
|
}
|
|
volume_mount {
|
|
name = "claude-home"
|
|
mount_path = "/home/agent/.claude"
|
|
}
|
|
|
|
resources {
|
|
requests = {
|
|
memory = "32Mi"
|
|
}
|
|
limits = {
|
|
memory = "64Mi"
|
|
}
|
|
}
|
|
}
|
|
|
|
container {
|
|
name = "claude-agent-service"
|
|
image = "${local.image}:${local.image_tag}"
|
|
|
|
port {
|
|
container_port = 8080
|
|
}
|
|
|
|
env_from {
|
|
secret_ref {
|
|
name = "claude-agent-secrets"
|
|
}
|
|
}
|
|
|
|
env {
|
|
name = "WORKSPACE_DIR"
|
|
value = "/workspace/infra"
|
|
}
|
|
|
|
liveness_probe {
|
|
http_get {
|
|
path = "/health"
|
|
port = 8080
|
|
}
|
|
initial_delay_seconds = 10
|
|
period_seconds = 30
|
|
}
|
|
|
|
readiness_probe {
|
|
http_get {
|
|
path = "/health"
|
|
port = 8080
|
|
}
|
|
initial_delay_seconds = 5
|
|
period_seconds = 10
|
|
}
|
|
|
|
volume_mount {
|
|
name = "workspace"
|
|
mount_path = "/workspace"
|
|
}
|
|
volume_mount {
|
|
name = "sops-age-key"
|
|
mount_path = "/home/agent/.config/sops/age"
|
|
}
|
|
volume_mount {
|
|
name = "claude-home"
|
|
mount_path = "/home/agent/.claude"
|
|
}
|
|
|
|
resources {
|
|
requests = {
|
|
cpu = "500m"
|
|
memory = "2Gi"
|
|
}
|
|
limits = {
|
|
memory = "4Gi"
|
|
}
|
|
}
|
|
}
|
|
|
|
volume {
|
|
name = "workspace"
|
|
persistent_volume_claim {
|
|
claim_name = kubernetes_persistent_volume_claim.workspace.metadata[0].name
|
|
}
|
|
}
|
|
|
|
volume {
|
|
name = "sops-age-key"
|
|
secret {
|
|
secret_name = kubernetes_secret.sops_age_key.metadata[0].name
|
|
default_mode = "0600"
|
|
}
|
|
}
|
|
|
|
volume {
|
|
name = "git-crypt-key"
|
|
config_map {
|
|
name = kubernetes_config_map.git_crypt_key.metadata[0].name
|
|
}
|
|
}
|
|
|
|
volume {
|
|
name = "claude-credentials-secret"
|
|
secret {
|
|
secret_name = kubernetes_secret.claude_credentials.metadata[0].name
|
|
default_mode = "0600"
|
|
}
|
|
}
|
|
|
|
volume {
|
|
name = "claude-home"
|
|
empty_dir {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
lifecycle {
|
|
ignore_changes = [spec[0].template[0].spec[0].dns_config] # KYVERNO_LIFECYCLE_V1
|
|
}
|
|
}
|
|
|
|
# --- Service ---
|
|
|
|
resource "kubernetes_service" "claude_agent" {
|
|
metadata {
|
|
name = "claude-agent-service"
|
|
namespace = kubernetes_namespace.claude_agent.metadata[0].name
|
|
labels = local.labels
|
|
}
|
|
|
|
spec {
|
|
selector = local.labels
|
|
|
|
port {
|
|
port = 8080
|
|
target_port = 8080
|
|
}
|
|
|
|
type = "ClusterIP"
|
|
}
|
|
}
|
|
|
|
# =============================================================================
|
|
# Token expiry monitor
|
|
# Long-lived CLAUDE_CODE_OAUTH_TOKEN values expire 1y after mint. We track
|
|
# mint timestamps here — on rotation, update the map below. A CronJob pushes
|
|
# the computed expiry_timestamp to Pushgateway, Prometheus alerts 30d out.
|
|
# =============================================================================
|
|
locals {
|
|
claude_oauth_token_mint_epochs = {
|
|
# unix seconds (UTC) — when `claude setup-token` finished minting
|
|
"primary" = 1776528429 # 2026-04-18T12:07:09Z (TOKEN2)
|
|
"spare-1" = 1776528280 # 2026-04-18T12:04:40Z (TOKEN1)
|
|
"spare-2" = 1776528429 # 2026-04-18T12:07:09Z (TOKEN2 — redundant w/ primary)
|
|
}
|
|
claude_oauth_token_ttl_seconds = 365 * 24 * 60 * 60
|
|
}
|
|
|
|
resource "kubernetes_config_map" "claude_oauth_expiry" {
|
|
metadata {
|
|
name = "claude-oauth-expiry"
|
|
namespace = kubernetes_namespace.claude_agent.metadata[0].name
|
|
}
|
|
data = {
|
|
for path, mint in local.claude_oauth_token_mint_epochs :
|
|
path => tostring(mint + local.claude_oauth_token_ttl_seconds)
|
|
}
|
|
}
|
|
|
|
resource "kubernetes_cron_job_v1" "claude_oauth_expiry_monitor" {
|
|
metadata {
|
|
name = "claude-oauth-expiry-monitor"
|
|
namespace = kubernetes_namespace.claude_agent.metadata[0].name
|
|
}
|
|
spec {
|
|
concurrency_policy = "Replace"
|
|
failed_jobs_history_limit = 3
|
|
successful_jobs_history_limit = 1
|
|
schedule = "17 */6 * * *" # every 6h at :17 past
|
|
job_template {
|
|
metadata {}
|
|
spec {
|
|
backoff_limit = 1
|
|
ttl_seconds_after_finished = 300
|
|
template {
|
|
metadata {}
|
|
spec {
|
|
restart_policy = "OnFailure"
|
|
container {
|
|
name = "push-expiry"
|
|
image = "docker.io/curlimages/curl:8.11.0"
|
|
command = ["/bin/sh", "-c", <<-EOT
|
|
set -e
|
|
PG='http://prometheus-prometheus-pushgateway.monitoring:9091/metrics/job/claude-oauth-expiry-monitor'
|
|
NOW=$(date +%s)
|
|
PAYLOAD=''
|
|
PAYLOAD="$${PAYLOAD}# HELP claude_oauth_token_expiry_timestamp Unix epoch when the CLAUDE_CODE_OAUTH_TOKEN for this path expires
|
|
"
|
|
PAYLOAD="$${PAYLOAD}# TYPE claude_oauth_token_expiry_timestamp gauge
|
|
"
|
|
for path in /mnt/expiry/*; do
|
|
name=$(basename "$path")
|
|
exp=$(cat "$path")
|
|
PAYLOAD="$${PAYLOAD}claude_oauth_token_expiry_timestamp{path=\"$name\"} $exp
|
|
"
|
|
done
|
|
PAYLOAD="$${PAYLOAD}# HELP claude_oauth_expiry_monitor_last_push_timestamp Last time the expiry monitor pushed metrics
|
|
"
|
|
PAYLOAD="$${PAYLOAD}# TYPE claude_oauth_expiry_monitor_last_push_timestamp gauge
|
|
"
|
|
PAYLOAD="$${PAYLOAD}claude_oauth_expiry_monitor_last_push_timestamp $NOW
|
|
"
|
|
echo "$PAYLOAD"
|
|
echo "$PAYLOAD" | curl -sS --data-binary @- "$PG"
|
|
echo "pushed at $NOW"
|
|
EOT
|
|
]
|
|
volume_mount {
|
|
name = "expiry"
|
|
mount_path = "/mnt/expiry"
|
|
}
|
|
resources {
|
|
requests = { cpu = "10m", memory = "32Mi" }
|
|
limits = { memory = "64Mi" }
|
|
}
|
|
}
|
|
volume {
|
|
name = "expiry"
|
|
config_map {
|
|
name = kubernetes_config_map.claude_oauth_expiry.metadata[0].name
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|