boma/playbooks/site.yml
sjat 0b59107b33 feat(tags): enforce tag vocabulary in make lint; fix docker_host tag
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-06 09:37:43 +02:00

19 lines
481 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_host]