mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
ansible-lint 6.5.0 complains about: name: All names should start with an uppercase letter. (name[casing])
16 lines
414 B
YAML
16 lines
414 B
YAML
- name: Setup gitlab-runners
|
|
hosts: gitlab_runners
|
|
remote_user: root
|
|
roles:
|
|
- { role: common }
|
|
- { role: firewalld }
|
|
- { role: wireguard }
|
|
- { role: hardening }
|
|
- { role: sshd }
|
|
- { role: root_ssh }
|
|
- { role: fail2ban }
|
|
- { role: prometheus_exporters }
|
|
- { role: promtail }
|
|
- { role: libvirt, when: "'gitlab_vm_runners' in group_names" }
|
|
- { role: gitlab_runner }
|