2026-06-14 17:39:44 +02:00
|
|
|
---
|
2026-06-15 18:05:12 +02:00
|
|
|
# offsite.yml — off-site hosts (askari): Docker engine, the Caddy reverse proxy,
|
|
|
|
|
# and the NetBird coordinator. Run: make deploy PLAYBOOK=offsite LIMIT=askari
|
|
|
|
|
# Order matters: reverse_proxy creates the `boma` Docker network that
|
|
|
|
|
# netbird_coordinator joins as external, so it must come after.
|
2026-06-14 17:39:44 +02:00
|
|
|
- name: Configure off-site hosts
|
|
|
|
|
hosts: offsite_hosts
|
|
|
|
|
become: true
|
|
|
|
|
roles:
|
|
|
|
|
- role: docker_host
|
|
|
|
|
tags: [docker_host]
|
|
|
|
|
- role: reverse_proxy
|
|
|
|
|
tags: [reverse_proxy]
|
2026-06-15 18:05:12 +02:00
|
|
|
- role: netbird_coordinator
|
|
|
|
|
tags: [netbird_coordinator]
|