diff --git a/playbooks/offsite.yml b/playbooks/offsite.yml index e8899f5..dad5c25 100644 --- a/playbooks/offsite.yml +++ b/playbooks/offsite.yml @@ -1,6 +1,8 @@ --- -# 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 +# 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. - name: Configure off-site hosts hosts: offsite_hosts become: true @@ -9,3 +11,5 @@ tags: [docker_host] - role: reverse_proxy tags: [reverse_proxy] + - role: netbird_coordinator + tags: [netbird_coordinator]