DNS [WIP]

Signed-off-by: Alejandro Mery <amery@jpi.io>
This commit is contained in:
2023-09-10 18:40:13 +00:00
parent b0dec3f445
commit db3c476930
7 changed files with 229 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
// 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
}