Add routes from forrest to tailscale network
All checks were successful
/ terraform (push) Successful in 27s
/ ansible (push) Successful in 1m35s

This commit is contained in:
Jake Howard 2024-02-07 22:12:08 +00:00
parent df43be6f9b
commit 91a247868b
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 23 additions and 0 deletions

View File

@ -97,6 +97,7 @@
roles:
- forrest
- pve_nebula_route
- pve_tailscale_route
- hosts: qbittorrent
roles:

View File

@ -0,0 +1,22 @@
- name: Get routes
command:
argv:
- ip
- route
- show
- "{{ tailscale_cidr }}"
register: routes
changed_when: false
become: true
- name: Add route to tailscale hosts via ingress
command:
argv:
- ip
- route
- add
- "{{ tailscale_cidr }}"
- via
- "{{ pve_hosts.ingress.ip }}"
become: true
when: tailscale_cidr not in routes.stdout