feat(offsite): apply netbird_coordinator after reverse_proxy

NetBird joins the boma Docker network that reverse_proxy creates, so it's
ordered last. Carries its netbird_coordinator role-name tag (check-tags).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
sjat 2026-06-15 18:05:12 +02:00
parent 070d6f293b
commit 0e8d448f2b

View file

@ -1,6 +1,8 @@
--- ---
# offsite.yml — off-site hosts (askari): Docker engine + the Caddy reverse proxy. # offsite.yml — off-site hosts (askari): Docker engine, the Caddy reverse proxy,
# NetBird (M4b) appends to this play. Run: make deploy PLAYBOOK=offsite LIMIT=askari # 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.
- name: Configure off-site hosts - name: Configure off-site hosts
hosts: offsite_hosts hosts: offsite_hosts
become: true become: true
@ -9,3 +11,5 @@
tags: [docker_host] tags: [docker_host]
- role: reverse_proxy - role: reverse_proxy
tags: [reverse_proxy] tags: [reverse_proxy]
- role: netbird_coordinator
tags: [netbird_coordinator]