You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we maintain a fork of https://github.com/k8gb-io/external-dns. This imposes maintenance costs and security risks of stale dependencies within an image, as we rebuild it rarely.
The main goal of the fork was to unblock external-dns usage with NS record support.
// SupportedRecordType returns true only for supported record types.// Currently A, AAAA, CNAME, SRV, TXT and NS record types are supported.funcSupportedRecordType(recordTypestring) bool {
switchrecordType {
case"A", "AAAA", "CNAME", "SRV", "TXT", "NS":
returntruedefault:
returnfalse
}
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: