2026-05-30 14:10:01 +02:00
|
|
|
---
|
|
|
|
|
# site.yml — apply full standard state to all hosts
|
|
|
|
|
# Run via: make deploy PLAYBOOK=site
|
2026-06-11 14:48:00 +02:00
|
|
|
# NOTE: `base` is only partially built (its `firewall` concern; see STATUS.md) and the
|
|
|
|
|
# `docker_host` role does not exist yet, so this playbook applies base's firewall but is
|
|
|
|
|
# incomplete until `docker_host` is created.
|
2026-05-30 14:10:01 +02:00
|
|
|
|
|
|
|
|
- name: Apply base configuration to all hosts
|
|
|
|
|
hosts: all
|
|
|
|
|
become: true
|
|
|
|
|
roles:
|
|
|
|
|
- role: base
|
|
|
|
|
tags: [base]
|
|
|
|
|
|
|
|
|
|
- name: Configure Docker hosts
|
|
|
|
|
hosts: docker_hosts
|
|
|
|
|
become: true
|
|
|
|
|
roles:
|
|
|
|
|
- role: docker_host
|
2026-06-06 09:37:43 +02:00
|
|
|
tags: [docker_host]
|