fix: runner container network=host for k8s DNS resolution

Job containers use bridge network by default, so they can't resolve
gitea.git.svc.cluster.local. host network inherits k3s host routing
which can reach cluster service IPs directly.
This commit is contained in:
Will Anderson
2026-03-24 13:20:44 -05:00
parent 05973b50bd
commit 455797745c
+1 -1
View File
@@ -35,7 +35,7 @@ spec:
envs: {}
timeout: 3h
container:
network: bridge
network: host
docker_host: "unix:///var/run/docker.sock"
force_pull: false
EOF