diff options
author | Alex Auvolat <alex@adnab.me> | 2020-01-18 17:34:55 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-06-30 17:31:35 +0200 |
commit | 351e6f13d5bee3275f46fda4a1780c71d9f338d6 (patch) | |
tree | 675a202635ed79730f9b3965782e0b28130de992 /ansible/roles/network/templates | |
parent | 8fdebd74b37ae1766e03b39b8a3d6d84ef549a74 (diff) | |
download | infrastructure-351e6f13d5bee3275f46fda4a1780c71d9f338d6.tar.gz infrastructure-351e6f13d5bee3275f46fda4a1780c71d9f338d6.zip |
Network configuration:
- Remove nomad interface (unused)
- Deactivate systemd-resolved
- Add dns_server to production nodes variables
- Add recursors option to Consul so that it can resolve outside DNS
queries
- Use consul as a global DNS server for machines and containers, with
the outside DNS as a fallback (see roles/consul/templates/resolv.conf.j2)
Diffstat (limited to 'ansible/roles/network/templates')
-rw-r--r-- | ansible/roles/network/templates/nomad-interface.j2 | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ansible/roles/network/templates/nomad-interface.j2 b/ansible/roles/network/templates/nomad-interface.j2 deleted file mode 100644 index 74e9cd4..0000000 --- a/ansible/roles/network/templates/nomad-interface.j2 +++ /dev/null @@ -1,8 +0,0 @@ -auto nomad1 -iface nomad1 inet manual - pre-up /sbin/ip link add nomad1 type dummy - up /sbin/ip addr add {{ public_ip }} dev nomad1 - up /sbin/iptables -t nat -A PREROUTING -d {{ private_ip }}/32 -j NETMAP --to {{ public_ip }}/32 - down /sbin/iptables -t nat -D PREROUTING -d {{ private_ip }}/32 -j NETMAP --to {{ public_ip }}/32 - post-down /sbin/ip link del nomad1 - |