Documentation ¶
Index ¶
- Constants
- Variables
- func IsManagedRecord(record string, managedRecords, excludeRecords []string) bool
- type ConflictResolver
- type CreateOnlyPolicy
- type PerResource
- func (s PerResource) ResolveCreate(candidates []*endpoint.Endpoint) *endpoint.Endpoint
- func (s PerResource) ResolveRecordTypes(key planKey, row *planTableRow) map[string]*domainEndpoints
- func (s PerResource) ResolveUpdate(current *endpoint.Endpoint, candidates []*endpoint.Endpoint) *endpoint.Endpoint
- type Plan
- type Policy
- type PropertyComparator
- type SyncPolicy
- type UpsertOnlyPolicy
Constants ¶
const (
// OwnerLabelDeliminator is a deliminator used between owners in the OwnerLabelKey value when multiple owners are assigned.
OwnerLabelDeliminator = "&&"
)
Variables ¶
var ( ErrInvalidTarget = errors.New("invalid target") ErrOwnerConflict = errors.New("owner conflict") ErrRecordTypeConflict = errors.New("record type conflict") )
var Policies = map[string]Policy{ "sync": &SyncPolicy{}, "upsert-only": &UpsertOnlyPolicy{}, "create-only": &CreateOnlyPolicy{}, }
Policies is a registry of available policies.
Functions ¶
func IsManagedRecord ¶
Types ¶
type ConflictResolver ¶
type ConflictResolver interface { ResolveCreate(candidates []*endpoint.Endpoint) *endpoint.Endpoint ResolveUpdate(current *endpoint.Endpoint, candidates []*endpoint.Endpoint) *endpoint.Endpoint ResolveRecordTypes(key planKey, row *planTableRow) map[string]*domainEndpoints }
ConflictResolver is used to make a decision in case of two or more different kubernetes resources are trying to acquire same DNS name
type CreateOnlyPolicy ¶
type CreateOnlyPolicy struct{}
CreateOnlyPolicy allows only creating DNS records.
type PerResource ¶
type PerResource struct{}
PerResource allows only one resource to own a given dns name
func (PerResource) ResolveCreate ¶
func (s PerResource) ResolveCreate(candidates []*endpoint.Endpoint) *endpoint.Endpoint
ResolveCreate is invoked when dns name is not owned by any resource ResolveCreate takes "minimal" (string comparison of Target) endpoint to acquire the DNS record
func (PerResource) ResolveRecordTypes ¶
func (s PerResource) ResolveRecordTypes(key planKey, row *planTableRow) map[string]*domainEndpoints
ResolveRecordTypes attempts to detect and resolve record type conflicts in desired endpoints for a domain. For eample if the there is more than 1 candidate and at lease one of them is a CNAME. Per RFC 1034 3.6.2 domains that contain a CNAME can not contain any other record types. The default policy will prefer A and AAAA record types when a conflict is detected (consistent with endpoint.Targets.Less).
func (PerResource) ResolveUpdate ¶
func (s PerResource) ResolveUpdate(current *endpoint.Endpoint, candidates []*endpoint.Endpoint) *endpoint.Endpoint
ResolveUpdate is invoked when dns name is already owned by "current" endpoint ResolveUpdate uses "current" record as base and updates it accordingly with new version of same resource if it doesn't exist then pick min
type Plan ¶
type Plan struct { // List of current records Current []*endpoint.Endpoint // List of the records that were successfully resolved by this instance previously. Previous []*endpoint.Endpoint // List of desired records Desired []*endpoint.Endpoint // Policies under which the desired changes are calculated Policies []Policy // List of changes necessary to move towards desired state // Populated after calling Calculate() Changes *externaldnsplan.Changes // DomainFilter matches DNS names DomainFilter endpoint.MatchAllDomainFilters // ManagedRecords are DNS record types that will be considered for management. ManagedRecords []string // ExcludeRecords are DNS record types that will be excluded from management. ExcludeRecords []string // OwnerID of records to manage OwnerID string // Errors list of errors describing issues that can't be resolved by the plan. // Populated after calling Calculate() Errors []error // RootHost the host dns name being managed by the set of records in the plan. RootHost *string // Owners list of owners ids contributing to this record set. // Populated after calling Calculate() Owners []string // contains filtered or unexported fields }
Plan can convert a list of desired and current records to a series of create, update and delete actions.
func NewPlan ¶ added in v0.4.1
func NewPlan(ctx context.Context, current []*endpoint.Endpoint, previous []*endpoint.Endpoint, desired []*endpoint.Endpoint, policies []Policy, domainFilter endpoint.MatchAllDomainFilters, managedRecords []string, excludeRecords []string, ownerID string, rootHost *string) *Plan
NewPlan returns new Plan object
type PropertyComparator ¶
PropertyComparator is used in Plan for comparing the previous and current custom annotations.
type SyncPolicy ¶
type SyncPolicy struct{}
SyncPolicy allows for full synchronization of DNS records.
type UpsertOnlyPolicy ¶
type UpsertOnlyPolicy struct{}
UpsertOnlyPolicy allows everything but deleting DNS records.