Browse Source

Merge pull request 'dns: sort zones when writing data' (#35)

Reviewed-on: #35
pull/33/head
Alejandro Mery 8 months ago
parent
commit
a742bad084
  1. 10
      pkg/dns/record.go
  2. 5
      pkg/dns/write.go

10
pkg/dns/record.go

@ -151,6 +151,16 @@ func (mgr *Manager) genRegionsSorted() []string {
return cluster.SortRegions(regions)
}
func (mgr *Manager) genZonesSorted() []string {
zones := make([]string, 0, len(mgr.zones))
for name := range mgr.zones {
zones = append(zones, name)
}
sort.Strings(zones)
return zones
}
func (mgr *Manager) genAllAddrRecords() []AddrRecord {
var out []AddrRecord

5
pkg/dns/write.go

@ -14,12 +14,13 @@ func (mgr *Manager) WriteTo(w io.Writer) (int64, error) {
cache := make(map[string][]netip.Addr)
// zones
for _, z := range mgr.zones {
for _, zoneName := range mgr.genZonesSorted() {
z := mgr.zones[zoneName]
mgr.writeZoneHosts(&buf, z)
// zone alias
addrs := mgr.genZoneAddresses(z)
zoneName := z.Name
rr := AddrRecord{
Name: mgr.fqdn(zoneName + mgr.suffix),

Loading…
Cancel
Save