17 lines
338 B
YAML
17 lines
338 B
YAML
---
|
|
# site.yml — apply full standard state to all hosts
|
|
# Run via: make deploy PLAYBOOK=site
|
|
|
|
- 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]
|