GRM-20: fix: set runner_mode to binary in multi-instance converge
CI / lint (push) Has been cancelled
CI / unit-tests (push) Has been cancelled
CI / molecule-tests (push) Has been cancelled

The multi-instance scenario verify playbook expects config files at
/etc/gitea-runner/<name>/config.yaml (binary mode path). Without
runner_mode set, the role defaulted to docker mode, which places the
config in /var/lib/gitea-runner/<name>/config.yaml instead.

Add runner_mode: binary to both converge plays so config placement
matches the verify assertions.
This commit is contained in:
Emil Simeonov
2026-06-19 10:51:36 +02:00
parent c91626a8ff
commit c05d7c9c4f
@@ -6,6 +6,7 @@
gitea_url: "http://localhost:3000"
registration_token: "fake-token-for-testing"
runner_name: "molecule-runner-a"
runner_mode: "binary"
skip_runner_registration: true
roles:
- role: gitea-runner
@@ -17,6 +18,7 @@
gitea_url: "http://localhost:3000"
registration_token: "fake-token-for-testing"
runner_name: "molecule-runner-b"
runner_mode: "binary"
skip_runner_registration: true
roles:
- role: gitea-runner