The four ports were the only entries in services_config.yml with a real
justification: each is read twice, by the role that deploys the service on its
own box AND by a socket-proxy or Caddy play that runs on the EDGE host and
publishes it. A role default is invisible to that second play.
But the shape was wrong in two ways. The file had to be named in vars_files: by
30 plays - opt-in configuration that someone will eventually forget - and five
role defaults silently interpolated service_settings.*, so bitcoin_knots,
fulcrum, datum_gateway and mempool were not self-contained: using any of them
without that one vars_file entry broke it.
Each port now lives in host_vars/<owning box>/main.yml:
host_vars/knots_box_local/main.yml bitcoin_p2p_port, datum_gateway_api_port,
datum_gateway_stratum_port
host_vars/fulcrum_box_local/main.yml fulcrum_ssl_port
host_vars/mempool_box_local/main.yml mempool_frontend_port
host_vars auto-loads and outranks role defaults, so the owning role picks the
value up with no vars_files at all, and the edge play reads the same single
definition as hostvars['<host>'].<name>. The role defaults keep the protocol
standard (8333, 50002, ...) so each role still works standalone, with the live
deployment's value in host_vars winning.
Also fixed a fourth copy of an inventory identity: the mempool Caddy play had
"mempool-box:{{ ... }}" hardcoded in the upstream. It now derives the host from
hostvars['mempool_box_local'].ansible_host, so inventory is the only place any
box's name is written down.
services_config.yml is deleted, with 25 more vars_files entries across 19
playbooks. Between this and the previous commit, 87 vars_files entries are gone
and every variable in the repo now comes from group_vars/all, host_vars,
inventory, a role default, or that service's own *_vars.yml.
Verification: an edge-host probe resolves all eight ports and hostnames to
byte-identical values to the ones services_config.yml used to supply. Each
owning host resolves its own port through host_vars. All 37 playbooks'
--list-tasks output is unchanged. The four edge plays that consume these values
all check-diff changed=0 - the socket-proxy and Caddy units on vipy are
byte-identical, which is the direct proof the rewiring landed on the same
values. fulcrum and datum-gateway check-diff exactly as before (ok=28/changed=1
and ok=15/changed=1, both the known timer re-arm).
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
97 lines
No EOL
2.8 KiB
YAML
97 lines
No EOL
2.8 KiB
YAML
- name: Deploy ntfy and configure Caddy reverse proxy
|
|
hosts: monitoring
|
|
become: yes
|
|
vars_files:
|
|
- ./ntfy_vars.yml
|
|
vars:
|
|
ntfy_subdomain: "{{ subdomains.ntfy }}"
|
|
ntfy_domain: "{{ ntfy_subdomain }}.{{ root_domain }}"
|
|
|
|
tasks:
|
|
- name: Ensure /etc/apt/keyrings exists
|
|
file:
|
|
path: /etc/apt/keyrings
|
|
state: directory
|
|
mode: '0755'
|
|
|
|
- name: Download and dearmor ntfy GPG key
|
|
shell: curl -fsSL https://archive.heckel.io/apt/pubkey.txt | gpg --dearmor -o /etc/apt/keyrings/archive.heckel.io.gpg
|
|
args:
|
|
creates: /etc/apt/keyrings/archive.heckel.io.gpg
|
|
|
|
- name: Add ntfy APT repository
|
|
copy:
|
|
dest: /etc/apt/sources.list.d/archive.heckel.io.list
|
|
content: |
|
|
deb [arch=amd64 signed-by=/etc/apt/keyrings/archive.heckel.io.gpg] https://archive.heckel.io/apt debian main
|
|
mode: '0644'
|
|
|
|
- name: Update APT cache
|
|
apt:
|
|
update_cache: yes
|
|
|
|
- name: Install ntfy
|
|
apt:
|
|
name: ntfy
|
|
state: present
|
|
|
|
- name: Ensure ntfy cache directories exist
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
owner: ntfy
|
|
group: ntfy
|
|
mode: '0755'
|
|
loop:
|
|
- /var/cache/ntfy
|
|
- /var/cache/ntfy/attachments
|
|
|
|
- name: Deploy ntfy configuration file
|
|
copy:
|
|
dest: /etc/ntfy/server.yml
|
|
content: |
|
|
base-url: "http://{{ ntfy_domain }}"
|
|
listen-http: ":{{ ntfy_port }}"
|
|
cache-file: "/var/cache/ntfy/cache.db"
|
|
attachment-cache-dir: "/var/cache/ntfy/attachments"
|
|
behind-proxy: true
|
|
auth-file: "/var/lib/ntfy/user.db"
|
|
auth-default-access: "deny-all"
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|
|
notify: Restart ntfy
|
|
|
|
- name: Enable and start ntfy service
|
|
systemd:
|
|
name: ntfy
|
|
enabled: yes
|
|
state: started
|
|
|
|
- name: Create ntfy admin user
|
|
shell: |
|
|
(echo "{{ ntfy_password }}"; echo "{{ ntfy_password }}") | ntfy user add --role=admin "{{ ntfy_username }}"
|
|
|
|
- name: Publish ntfy through Caddy
|
|
ansible.builtin.include_role:
|
|
name: caddy_site
|
|
vars:
|
|
caddy_site_name: ntfy
|
|
caddy_site_domain: "{{ ntfy_domain }}, http://{{ ntfy_domain }}"
|
|
# Raw body: ntfy needs a plain-HTTP listener for its CLI/app clients,
|
|
# with only GETs to the docs and topic paths redirected to HTTPS.
|
|
caddy_site_body: |
|
|
reverse_proxy 127.0.0.1:{{ ntfy_port }}
|
|
|
|
@httpget {
|
|
protocol http
|
|
method GET
|
|
path_regexp ^/([-_a-z0-9]{0,64}$|docs/|static/)
|
|
}
|
|
redir @httpget https://{host}{uri}
|
|
|
|
handlers:
|
|
- name: Restart ntfy
|
|
systemd:
|
|
name: ntfy
|
|
state: restarted |