Compare commits

...

2 Commits

Author SHA1 Message Date
Lukas Greve
205f7b83be create a meta file to execute sub roles. Remove / add blank lines at the end. Add mock 2025-11-22 11:22:46 +01:00
Lukas Greve
3553a8d289 update inventory 2025-11-22 11:21:17 +01:00
6 changed files with 14 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
# This file defines targets (hosts, groups, host-specific variables)
[all]
10.17.3.121 ansible_user=groot ansible_become=true ansible_python_interpreter=/usr/bin/python3
192.168.1.12 ansible_user=groot ansible_become=true ansible_python_interpreter=/usr/bin/python3
[gitrunner]
10.17.3.121
192.168.1.12

10
main.yml Normal file
View File

@@ -0,0 +1,10 @@
---
- name: Deploy and configure a runner on target machine
hosts: gitrunner
become: true
gather_facts: true
roles:
- update.yml
- host_setup.yml
- runner_setup.yml

View File

@@ -11,6 +11,7 @@
- docker
- nodejs
- git
- mock
state: present
update_cache: true