k8gb-io/k8gb

Switch to upstream external-dns

Opened this issue · 0 comments

// SupportedRecordType returns true only for supported record types.
// Currently A, AAAA, CNAME, SRV, TXT and NS record types are supported.
func SupportedRecordType(recordType string) bool {
	switch recordType {
	case "A", "AAAA", "CNAME", "SRV", "TXT", "NS":
		return true
	default:
		return false
	}
}