R6/R7: ADR-003 & ADR-008 CI pipelines rewritten trunk-based (push to main -> test -> staging -> [manual gate] production); CLAUDE.md no longer forbids pushing to main. R8: STATUS/roles-README/site.yml now say base & docker_host are not built (not in git), so a clean clone errors. R15/R16: ADR-001 table flagged as intended design; dropped the unbuilt 'monitoring agent' from the baseline. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
19 lines
476 B
YAML
19 lines
476 B
YAML
---
|
|
# site.yml — apply full standard state to all hosts
|
|
# Run via: make deploy PLAYBOOK=site
|
|
# NOTE: the `base` and `docker_host` roles are not built yet (see STATUS.md), so this
|
|
# playbook fails on a clean clone until they exist.
|
|
|
|
- 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]
|