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:53:55 +02:00
|
|
|
# NOTE: `base` is only partially built (its `firewall` concern; see STATUS.md) and
|
|
|
|
|
# `docker_host` is scaffolded but has no tasks yet, so this playbook applies base's
|
|
|
|
|
# firewall but is otherwise incomplete until those roles gain content.
|
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]
|