fix:hard DNS on oscar instead Nas (if NAS is shutdown cluster DNS will
shutdown )
This commit is contained in:
parent
0db8555fe8
commit
5718968407
@ -18,5 +18,7 @@ pdns_rec_config:
|
|||||||
- "{{ domain.name }}=192.168.1.5"
|
- "{{ domain.name }}=192.168.1.5"
|
||||||
- "lan.{{ domain.name }}=192.168.1.5"
|
- "lan.{{ domain.name }}=192.168.1.5"
|
||||||
- "1.168.192.in-addr.arpa=192.168.1.5:5300"
|
- "1.168.192.in-addr.arpa=192.168.1.5:5300"
|
||||||
local-address: "{{ ansible_default_ipv4.address }}"
|
|
||||||
|
local-address: "{{ hostvars[inventory_hostname]['ansible_'+ default_interface].ipv4.address|default(ansible_default_ipv4.address) }}"
|
||||||
dnssec: "off"
|
dnssec: "off"
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ dhcpd_lease_time: '72'
|
|||||||
dhcpd_domain_name: "lan.{{ domain.name }}"
|
dhcpd_domain_name: "lan.{{ domain.name }}"
|
||||||
dhcpd_nameservers:
|
dhcpd_nameservers:
|
||||||
- '192.168.1.4'
|
- '192.168.1.4'
|
||||||
- '192.168.1.43'
|
- '192.168.1.40'
|
||||||
|
|
||||||
dhcpd_zones:
|
dhcpd_zones:
|
||||||
- zone: "lan.{{ domain.name }}."
|
- zone: "lan.{{ domain.name }}."
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
[DNS]
|
[DNS]
|
||||||
oberon
|
oscar
|
||||||
|
|
||||||
[dhcp]
|
[dhcp]
|
||||||
oberon
|
oberon
|
||||||
|
@ -43,19 +43,6 @@ job "pihole" {
|
|||||||
name = "dns"
|
name = "dns"
|
||||||
port = "dns"
|
port = "dns"
|
||||||
|
|
||||||
check {
|
|
||||||
name = "service: dns dig check"
|
|
||||||
type = "script"
|
|
||||||
command = "/usr/bin/dig"
|
|
||||||
args = ["+short", "@192.168.1.4"]
|
|
||||||
interval = "10s"
|
|
||||||
timeout = "2s"
|
|
||||||
|
|
||||||
check_restart {
|
|
||||||
limit = 3
|
|
||||||
grace = "60s"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
config {
|
config {
|
||||||
image = "pihole/pihole:2023.10.0"
|
image = "pihole/pihole:2023.10.0"
|
||||||
@ -73,7 +60,7 @@ job "pihole" {
|
|||||||
env {
|
env {
|
||||||
TZ = "Europe/Paris"
|
TZ = "Europe/Paris"
|
||||||
DNS1 = "192.168.1.5"
|
DNS1 = "192.168.1.5"
|
||||||
DNS2 = "192.168.1.43"
|
DNS2 = "192.168.1.40"
|
||||||
WEB_PORT = "${NOMAD_PORT_http}"
|
WEB_PORT = "${NOMAD_PORT_http}"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user