boma/playbooks/site.yml
sjat 1da117d65b docs(review): 2026-06-11 repo audit — fix build-wave doc drift
/review-repo run at 67f2aba. Auto-fixed 5 safe doc-drift items left by the
base(firewall)+dev_env build wave: README/playbook/role notes that still called
the roles "empty/not built", plus README tree gaps and the reciprocal ADR-021
cross-links in ADR-016/020.

18 open findings reported (not fixed). Headline: `make lint` is red on `main`
(site.yml imports the non-existent docker_host role) and an ADR-004 <-> ADR-022
backup-scope contradiction. Deferral checklist clean (0 stale-deferred); 7 of
12 prior findings confirmed resolved. See docs/reviews/2026-06-11-review.md.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-11 14:48:00 +02:00

20 lines
564 B
YAML

---
# site.yml — apply full standard state to all hosts
# Run via: make deploy PLAYBOOK=site
# 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.
- 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
tags: [docker_host]