Files
homelab/k8s/infra/forgejo-runner/values-node.yaml
T
rock acc11d5e87
Build forgejo-runner-node image / build (push) Failing after 30s
feat: custom forgejo-runner-node image with docker.io pre-installed
- Dockerfile.node extends node:22-bookworm + docker.io
- CI workflow builds and pushes to forgejo registry on changes
- values-node.yaml references custom image instead of stock node
- Removes need to install docker in every workflow using node runner
2026-09-05 14:20:42 -07:00

15 lines
664 B
YAML

# 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.
#
# forgejo-runner-node extends node:22-bookworm with docker.io, so Node + Docker
# are both available. Built and pushed via homelab CI (build-runner-node.yml).
runner:
name: node-runner
# Custom image extends node:22-bookworm with docker.io pre-installed
labels: "node:docker://forgejo.riotpiao.com/rock/forgejo-runner-node:latest"
# GC CronJob renders only from the default (golang) values to avoid duplicates
gc:
enabled: false