feat: Added the ability to spin-up an abritrary number of runners at runtime
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
# Generated by OpenTofu from var.dev_runner_count - do not hand-edit.
|
||||
# To change the number of runners, edit dev_runner_count in terraform.tfvars and
|
||||
# run tofu apply. To change their shape, edit
|
||||
# infra/modules/dev/templates/runners-docker-compose.yml.tftpl instead.
|
||||
#
|
||||
# GITEA_RUNNER_REGISTRATION_TOKEN is intentionally left as a compose variable
|
||||
# (not baked in here) - services/dev/spinup.sh generates a fresh token and
|
||||
# writes it to Runners/.env immediately before starting these containers.
|
||||
services:
|
||||
%{ for i in range(runner_count) ~}
|
||||
runner-${i + 1}:
|
||||
image: gitea/act_runner:latest
|
||||
container_name: gitea_runner_${i + 1}
|
||||
volumes:
|
||||
- ./config.yaml:/config.yaml
|
||||
- ./gitea_runner_${i + 1}:/data
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
networks:
|
||||
- proxy
|
||||
environment:
|
||||
CONFIG_FILE: /config.yaml
|
||||
GITEA_INSTANCE_URL: "https://git.luke-else.co.uk"
|
||||
GITEA_RUNNER_REGISTRATION_TOKEN: "$${GITEA_RUNNER_REGISTRATION_TOKEN}"
|
||||
GITEA_RUNNER_NAME: "CICD#${i + 1}"
|
||||
restart: unless-stopped
|
||||
%{ endfor ~}
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
Reference in New Issue
Block a user