mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2026-04-15 21:11:01 +02:00
* feat: add support for expand alias in pdns provider * feat: codereview * feat: rewrite docs * feat: gofmt * feat: rewrite using postprocessor * feat: gofmt * feat: update docs * fix: prefer-alias respects existing annotations * feat: update formatting verbs * fix: fix return values and call sites after convertRRSetToEndpoints signature change Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix: remove unused error return from convertRRSetToEndpoints Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
103 lines
2.6 KiB
Go
103 lines
2.6 KiB
Go
/*
|
|
Copyright 2025 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package wrappers
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"sigs.k8s.io/external-dns/endpoint"
|
|
"sigs.k8s.io/external-dns/source"
|
|
"sigs.k8s.io/external-dns/source/annotations"
|
|
)
|
|
|
|
type postProcessor struct {
|
|
source source.Source
|
|
cfg PostProcessorConfig
|
|
}
|
|
|
|
type PostProcessorConfig struct {
|
|
ttl int64
|
|
preferAlias bool
|
|
isConfigured bool
|
|
}
|
|
|
|
type PostProcessorOption func(*PostProcessorConfig)
|
|
|
|
func WithTTL(ttl time.Duration) PostProcessorOption {
|
|
return func(cfg *PostProcessorConfig) {
|
|
if int64(ttl.Seconds()) > 0 {
|
|
cfg.isConfigured = true
|
|
cfg.ttl = int64(ttl.Seconds())
|
|
}
|
|
}
|
|
}
|
|
|
|
// WithPostProcessorPreferAlias enables setting alias=true on CNAME endpoints.
|
|
// This signals to providers that support ALIAS records (like PowerDNS, AWS)
|
|
// to create ALIAS records instead of CNAMEs.
|
|
func WithPostProcessorPreferAlias(enabled bool) PostProcessorOption {
|
|
return func(cfg *PostProcessorConfig) {
|
|
cfg.preferAlias = enabled
|
|
if enabled {
|
|
cfg.isConfigured = true
|
|
}
|
|
}
|
|
}
|
|
|
|
func NewPostProcessor(source source.Source, opts ...PostProcessorOption) source.Source {
|
|
cfg := PostProcessorConfig{}
|
|
for _, opt := range opts {
|
|
opt(&cfg)
|
|
}
|
|
return &postProcessor{source: source, cfg: cfg}
|
|
}
|
|
|
|
func (pp *postProcessor) Endpoints(ctx context.Context) ([]*endpoint.Endpoint, error) {
|
|
endpoints, err := pp.source.Endpoints(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if !pp.cfg.isConfigured {
|
|
return endpoints, nil
|
|
}
|
|
|
|
for _, ep := range endpoints {
|
|
if ep == nil {
|
|
continue
|
|
}
|
|
ep.WithMinTTL(pp.cfg.ttl)
|
|
// Set alias annotation for CNAME records when preferAlias is enabled
|
|
// Only set if not already explicitly configured at the source level
|
|
if pp.cfg.preferAlias && ep.RecordType == endpoint.RecordTypeCNAME {
|
|
if _, exists := ep.GetProviderSpecificProperty(annotations.AliasKey); !exists {
|
|
ep.WithProviderSpecific("alias", "true")
|
|
}
|
|
}
|
|
}
|
|
|
|
return endpoints, nil
|
|
}
|
|
|
|
func (pp *postProcessor) AddEventHandler(ctx context.Context, handler func()) {
|
|
log.Debug("postProcessor: adding event handler")
|
|
pp.source.AddEventHandler(ctx, handler)
|
|
}
|