From ce10997f7969ed47703326f686b8a7996efdff9f Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Sun, 25 Jan 2026 19:52:30 -0800 Subject: [PATCH] Fix: Move DOCKER_HOST to runner.envs (not container.env) The act_runner config uses runner.envs for job environment variables, not container.env which doesn't exist. Co-Authored-By: Claude Opus 4.5 --- argocd/manifests/forgejo-runner/configmap.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/argocd/manifests/forgejo-runner/configmap.yaml b/argocd/manifests/forgejo-runner/configmap.yaml index 7d8ddef..dd3c3ef 100644 --- a/argocd/manifests/forgejo-runner/configmap.yaml +++ b/argocd/manifests/forgejo-runner/configmap.yaml @@ -12,12 +12,12 @@ data: file: /data/.runner capacity: 2 timeout: 3h + # Set DOCKER_HOST in job containers so they can run docker commands + envs: + DOCKER_HOST: tcp://127.0.0.1:2375 container: # Use our custom job execution image with Node.js + Docker CLI network: "host" # Connect to DinD sidecar via TCP (not socket) docker_host: tcp://127.0.0.1:2375 - # Set DOCKER_HOST in job containers so they can run docker commands - env: - DOCKER_HOST: tcp://127.0.0.1:2375