Name admin = Name.fromString(adminServer, domainRoot);
FabricService service = fabricService.get();
List<Record> records = new ArrayList<>();
//TODO: At some point we need to manage the serial number.
records.add(new SOARecord(domainRoot, DClass.IN, DAY, ns, admin, 1, refresh, retry, expire, minimumTtl));
records.add(new NSRecord(domainRoot, DClass.IN, DAY, ns));
return new Zone(domainRoot, records.toArray(new Record[records.size()]));
}