Fix dns issues
Add woodpecker agent dns Add ipv6 binding to acme_dns
This commit is contained in:
parent
8a420a5c35
commit
d3e5f80728
2 changed files with 12 additions and 3 deletions
|
@ -25,3 +25,5 @@ acme_dns_compose:
|
|||
ports:
|
||||
- "{{ ansible_default_ipv4.address }}:53:53"
|
||||
- "{{ ansible_default_ipv4.address }}:53:53/udp"
|
||||
- "{{ ansible_default_ipv6.address }}:53:53"
|
||||
- "{{ ansible_default_ipv6.address }}:53:53/udp"
|
||||
|
|
|
@ -657,9 +657,16 @@ services = {
|
|||
|
||||
"woodpecker" = {
|
||||
host = "node001"
|
||||
dns = [{
|
||||
domain = "ci.serguzim.me"
|
||||
}]
|
||||
dns = [
|
||||
{
|
||||
domain = "ci.serguzim.me"
|
||||
},
|
||||
{
|
||||
domain = "agents.ci.serguzim.me"
|
||||
name = "woodpecker-agents"
|
||||
alias = "woodpecker"
|
||||
}
|
||||
]
|
||||
monitoring = {
|
||||
url = "/healthz"
|
||||
group = "4-services"
|
||||
|
|
Loading…
Reference in a new issue