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