[ci skip] Fix DNS forwarding through Traefik to Technitium
Expose UDP port 53 on the Traefik LoadBalancer service and enable cross-namespace CRD references so the IngressRouteUDP in the traefik namespace can route DNS traffic to technitium-dns in the technitium namespace. This restores DNS resolution via 10.0.20.202 for pfSense and Home Assistant.
This commit is contained in:
parent
f01e92b1d9
commit
30bc2e9386
1 changed files with 4 additions and 2 deletions
|
|
@ -51,8 +51,9 @@ resource "helm_release" "traefik" {
|
||||||
publishedService = { enabled = true }
|
publishedService = { enabled = true }
|
||||||
}
|
}
|
||||||
kubernetesCRD = {
|
kubernetesCRD = {
|
||||||
enabled = true
|
enabled = true
|
||||||
allowExternalNameServices = true
|
allowExternalNameServices = true
|
||||||
|
allowCrossNamespace = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -93,6 +94,7 @@ resource "helm_release" "traefik" {
|
||||||
port = 5353
|
port = 5353
|
||||||
exposedPort = 53
|
exposedPort = 53
|
||||||
protocol = "UDP"
|
protocol = "UDP"
|
||||||
|
expose = { default = true }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue