Previous image (rust:1.83-bookworm) lacks Node.js, causing GitHub Actions to fail with: 'exec: "node": executable file not found' Solution: - Change rust runner image from rust:1.83-bookworm to docker:27-cli - docker:27-cli includes: Node.js, git, docker CLI, full dev tools - Verified tag exists: docker manifest inspect docker:27-cli ✓ This allows actions/checkout@v4 and other GitHub Actions to run properly on the rust runner pod.
23 lines
762 B
YAML
23 lines
762 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.
|
|
#
|
|
# Use docker:27-cli instead of rust:1.83-bookworm because:
|
|
# - Needs Node.js for GitHub Actions (actions/checkout@v4, etc.)
|
|
# - Has docker CLI + git + full dev tools
|
|
# - rust:1.83-bookworm lacks Node.js (causes action failures)
|
|
#
|
|
# docker:27-cli verified: docker manifest inspect docker:27-cli ✓
|
|
runner:
|
|
name: rust-runner
|
|
labels: "rust:docker://docker:27-cli"
|
|
|
|
persistence:
|
|
reg:
|
|
storageClass: longhorn
|
|
size: 20Gi
|
|
|
|
# GC CronJob renders only from the default (golang) values to avoid duplicates
|
|
gc:
|
|
enabled: false
|