1. Forgejo CI is broken across all repos Every workflow fails because runner labels point to a bare Alpine image with nothing in it. ┌────────────────────────────────────────┬──────────────────────────────────────┐ │ Before │ After │ ├────────────────────────────────────────┼──────────────────────────────────────┤ │ golang:docker://forgejo/runner:6 │ golang:docker://golang:1.26-bookworm │ ├────────────────────────────────────────┼──────────────────────────────────────┤ │ No Go, no Node.js, no apt-get, no root │ Go, git, apt-get, root │ └────────────────────────────────────────┴──────────────────────────────────────┘ Plus the docker socket isn't shared between dind sidecar and runner, so even if docker CLI existed, it can't reach the daemon. ┌───────────────────────────────────────────┬─────────────────────────────────────────────────────────────┐ │ Before │ After │ ├───────────────────────────────────────────┼─────────────────────────────────────────────────────────────┤ │ dind creates socket in its own filesystem │ Shared /run emptyDir volume │ ├───────────────────────────────────────────┼─────────────────────────────────────────────────────────────┤ │ Runner can't see it │ Both containers see /run/docker.sock │ ├───────────────────────────────────────────┼─────────────────────────────────────────────────────────────┤ │ No docker_host config │ docker_host: automount passes socket to workflow containers │ Co-authored-by: rock <[email protected]>
19 lines
599 B
YAML
19 lines
599 B
YAML
# 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.
|
|
#
|
|
# Label image: rust:1-bookworm — Debian, root, apt-get, Rust, cargo, git.
|
|
# Install Node.js/docker in workflow steps as needed.
|
|
runner:
|
|
image:
|
|
repository: code.forgejo.org/forgejo/runner
|
|
tag: "6"
|
|
name: rust-runner
|
|
labels: "rust:docker://rust:1-bookworm"
|
|
|
|
|
|
|
|
# GC CronJob renders only from the default (golang) values to avoid duplicates
|
|
gc:
|
|
enabled: false
|