From 016f821c54c64a4bb310ae4d82ac52b905a8afda Mon Sep 17 00:00:00 2001 From: Julian Schacher Date: Wed, 31 Jan 2024 16:37:47 +0100 Subject: [PATCH] Introduce everything playbook, which runs all non-initial setup roles It runs the maintenance playbook and then all other non-initial setup roles, which aren't covered by the maintenance playbook. --- inventories/hetzner/hosts.yaml | 3 +++ playbooks/everything.yaml | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 playbooks/everything.yaml diff --git a/inventories/hetzner/hosts.yaml b/inventories/hetzner/hosts.yaml index c07268f..c9c9e87 100644 --- a/inventories/hetzner/hosts.yaml +++ b/inventories/hetzner/hosts.yaml @@ -10,3 +10,6 @@ all: Debian_12_Hosts: hosts: cit-ansible-test: + Docker_Hosts: + hosts: + cit-ansible-test: diff --git a/playbooks/everything.yaml b/playbooks/everything.yaml new file mode 100644 index 0000000..bcdfe1a --- /dev/null +++ b/playbooks/everything.yaml @@ -0,0 +1,7 @@ +- name: Run maintenance playbook + ansible.builtin.import_playbook: maintenance.yaml + +- name: Ensure Docker for Docker_Hosts + hosts: Docker_Hosts + roles: + - docker