15 lines
609 B
Plaintext
15 lines
609 B
Plaintext
# Gitea Runner Manager inventory example
|
|
# Each line represents a target host for runner installation.
|
|
#
|
|
# Required variables per host:
|
|
# ansible_user — SSH login user
|
|
# ansible_ssh_private_key_file — Path to SSH private key
|
|
#
|
|
# Optional variables per host:
|
|
# runner_mode=docker — Deployment mode: docker or binary
|
|
# gitea_runner_version=1.0.8 — Runner image/binary version
|
|
|
|
[runners]
|
|
192.168.1.10 ansible_user=ubuntu ansible_ssh_private_key_file=~/.ssh/id_ed25519
|
|
runner.example.com ansible_user=arch ansible_ssh_private_key_file=~/.ssh/id_ed25519 runner_mode=binary
|