// Package dns manages DNS entries for the cluster package dns // A Region describes where a Zone is type Region struct { // Name is the identifier of this Region Name string // Regions are a list of (sub)regions that belong to this Region Regions []string // Zones are a list of Zones that directly belong to this Region Zones []string }