fix core infra dns

This commit is contained in:
ace 2024-05-06 03:00:14 +03:00
parent 3ac1b27b4c
commit 7e508f906f
Signed by: ace
GPG Key ID: 2C08973DD37A76FD
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ internal_dns_default_values:
zone: "{{ internal_domain | default(domain) }}"
tsigSecret: "{{ k8s_tsig }}"
tsigSecretAlg: "{{ internal_dns_tsigSecretAlg | default('hmac-sha512') }}"
tsigKeyname: "{{ internal_dns_tsigKeyname | default('k8s') }}"
tsigKeyname: "{{ internal_dns_tsigKeyname | default(namespace) }}"
tsigAxfr: true
## Possible units [ns, us, ms, s, m, h], see more https://golang.org/pkg/time/#ParseDuration
minTTL: "30s"

View File

@ -10,7 +10,7 @@ local_dns_default_values:
zone: "{{ local_domain }}"
tsigSecret: "{{ k8s_tsig }}"
tsigSecretAlg: "{{ local_dns_tsigSecretAlg | default('hmac-sha512') }}"
tsigKeyname: "{{ local_dns_tsigKeyname | default('k8s') }}"
tsigKeyname: "{{ local_dns_tsigKeyname | default(namespace) }}"
tsigAxfr: true
## Possible units [ns, us, ms, s, m, h], see more https://golang.org/pkg/time/#ParseDuration
minTTL: "30s"

View File

@ -10,7 +10,7 @@ service_dns_default_values:
zone: "{{ service_domain | default(domain) }}"
tsigSecret: "{{ k8s_tsig }}"
tsigSecretAlg: "{{ service_dns_tsigSecretAlg | default('hmac-sha512') }}"
tsigKeyname: "{{ service_dns_tsigKeyname | default('k8s') }}"
tsigKeyname: "{{ service_dns_tsigKeyname | default(namespace) }}"
tsigAxfr: true
## Possible units [ns, us, ms, s, m, h], see more https://golang.org/pkg/time/#ParseDuration
minTTL: "30s"