feat(forgejo-runner): split into golang/node/rust runners, retire generic docker runner

This commit is contained in:
Story Crater Bot
2026-08-21 16:49:26 -07:00
parent 130746e6a1
commit dbc4a55b02
4 changed files with 90 additions and 11 deletions
@@ -0,0 +1,9 @@
# Override on top of values.yaml (the chart's defaults) for the node-labeled
# runner instance. Only runner.name and runner.labels differ -- everything
# else (image, dind, persistence, tolerations, nodeSelector) is shared.
#
# node:22-bookworm ships Node natively, so unlike the golang/rust instances,
# jobs on this runner need no "install node" step before actions/checkout.
runner:
name: node-runner
labels: "node:docker://node:22-bookworm"
+10
View File
@@ -0,0 +1,10 @@
# Override on top of values.yaml (the chart's defaults) for the rust-labeled
# runner instance. Only runner.name and runner.labels differ -- everything
# else (image, dind, persistence, tolerations, nodeSelector) is shared.
#
# rust:1.83-bookworm -- verified this tag exists (docker manifest inspect)
# before pinning it, per this repo's convention of not trusting a tag exists
# without checking.
runner:
name: rust-runner
labels: "rust:docker://rust:1.83-bookworm"
+8 -2
View File
@@ -2,8 +2,14 @@ runner:
image:
repository: code.forgejo.org/forgejo/runner
tag: "6" # pin exact release before apply
name: talos-runner
labels: "docker:docker://node:22-bookworm"
name: golang-runner
# Default image is only used when a job's `container:` doesn't override it
# (both ci.yaml and build.yaml in homelab-frontend do). Retired the old
# "docker" label entirely; every repo this runner serves is Go, so this
# instance carries the golang toolchain and its own dind sidecar builds and
# pushes that repo's images too -- there is no separate generic runner
# anymore.
labels: "golang:docker://golang:1.25-bookworm"
# In-cluster Service (:3000) — direct, avoids the ingress/public-hostname hop
# (the public URL is :443 which forgejo doesn't serve; runner got i/o timeout).
forgejoUrl: http://forgejo-gitea-http.cicd.svc.cluster.local:3000