/* Copyright 2017 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 controller import ( "context" "sync" "time" "github.com/prometheus/client_golang/prometheus" log "github.com/sirupsen/logrus" "sigs.k8s.io/external-dns/endpoint" "sigs.k8s.io/external-dns/plan" "sigs.k8s.io/external-dns/provider" "sigs.k8s.io/external-dns/registry" "sigs.k8s.io/external-dns/source" ) var ( registryErrorsTotal = prometheus.NewCounter( prometheus.CounterOpts{ Namespace: "external_dns", Subsystem: "registry", Name: "errors_total", Help: "Number of Registry errors.", }, ) sourceErrorsTotal = prometheus.NewCounter( prometheus.CounterOpts{ Namespace: "external_dns", Subsystem: "source", Name: "errors_total", Help: "Number of Source errors.", }, ) sourceEndpointsTotal = prometheus.NewGauge( prometheus.GaugeOpts{ Namespace: "external_dns", Subsystem: "source", Name: "endpoints_total", Help: "Number of Endpoints in all sources", }, ) registryEndpointsTotal = prometheus.NewGauge( prometheus.GaugeOpts{ Namespace: "external_dns", Subsystem: "registry", Name: "endpoints_total", Help: "Number of Endpoints in the registry", }, ) lastSyncTimestamp = prometheus.NewGauge( prometheus.GaugeOpts{ Namespace: "external_dns", Subsystem: "controller", Name: "last_sync_timestamp_seconds", Help: "Timestamp of last successful sync with the DNS provider", }, ) controllerNoChangesTotal = prometheus.NewCounter( prometheus.CounterOpts{ Namespace: "external_dns", Subsystem: "controller", Name: "no_op_runs_total", Help: "Number of reconcile loops ending up with no changes on the DNS provider side.", }, ) deprecatedRegistryErrors = prometheus.NewCounter( prometheus.CounterOpts{ Subsystem: "registry", Name: "errors_total", Help: "Number of Registry errors.", }, ) deprecatedSourceErrors = prometheus.NewCounter( prometheus.CounterOpts{ Subsystem: "source", Name: "errors_total", Help: "Number of Source errors.", }, ) registryARecords = prometheus.NewGauge( prometheus.GaugeOpts{ Namespace: "external_dns", Subsystem: "registry", Name: "a_records", Help: "Number of Registry A records.", }, ) sourceARecords = prometheus.NewGauge( prometheus.GaugeOpts{ Namespace: "external_dns", Subsystem: "source", Name: "a_records", Help: "Number of Source A records.", }, ) verifiedARecords = prometheus.NewGauge( prometheus.GaugeOpts{ Namespace: "external_dns", Subsystem: "controller", Name: "verified_a_records", Help: "Number of DNS A-records that exists both in source and registry.", }, ) ) func init() { prometheus.MustRegister(registryErrorsTotal) prometheus.MustRegister(sourceErrorsTotal) prometheus.MustRegister(sourceEndpointsTotal) prometheus.MustRegister(registryEndpointsTotal) prometheus.MustRegister(lastSyncTimestamp) prometheus.MustRegister(deprecatedRegistryErrors) prometheus.MustRegister(deprecatedSourceErrors) prometheus.MustRegister(controllerNoChangesTotal) prometheus.MustRegister(registryARecords) prometheus.MustRegister(sourceARecords) prometheus.MustRegister(verifiedARecords) } // Controller is responsible for orchestrating the different components. // It works in the following way: // * Ask the DNS provider for current list of endpoints. // * Ask the Source for the desired list of endpoints. // * Take both lists and calculate a Plan to move current towards desired state. // * Tell the DNS provider to apply the changes calculated by the Plan. type Controller struct { Source source.Source Registry registry.Registry // The policy that defines which changes to DNS records are allowed Policy plan.Policy // The interval between individual synchronizations Interval time.Duration // The DomainFilter defines which DNS records to keep or exclude DomainFilter endpoint.DomainFilterInterface // The nextRunAt used for throttling and batching reconciliation nextRunAt time.Time // The nextRunAtMux is for atomic updating of nextRunAt nextRunAtMux sync.Mutex // DNS record types that will be considered for management ManagedRecordTypes []string // MinEventSyncInterval is used as window for batching events MinEventSyncInterval time.Duration } // RunOnce runs a single iteration of a reconciliation loop. func (c *Controller) RunOnce(ctx context.Context) error { records, err := c.Registry.Records(ctx) if err != nil { registryErrorsTotal.Inc() deprecatedRegistryErrors.Inc() return err } registryEndpointsTotal.Set(float64(len(records))) regARecords := filterARecords(records) registryARecords.Set(float64(len(regARecords))) ctx = context.WithValue(ctx, provider.RecordsContextKey, records) endpoints, err := c.Source.Endpoints(ctx) if err != nil { sourceErrorsTotal.Inc() deprecatedSourceErrors.Inc() return err } sourceEndpointsTotal.Set(float64(len(endpoints))) srcARecords := filterARecords(endpoints) sourceARecords.Set(float64(len(srcARecords))) vRecords := fetchMatchingARecords(endpoints, records) verifiedARecords.Set(float64(len(vRecords))) endpoints = c.Registry.AdjustEndpoints(endpoints) plan := &plan.Plan{ Policies: []plan.Policy{c.Policy}, Current: records, Desired: endpoints, DomainFilter: endpoint.MatchAllDomainFilters{c.DomainFilter, c.Registry.GetDomainFilter()}, PropertyComparator: c.Registry.PropertyValuesEqual, ManagedRecords: c.ManagedRecordTypes, } plan = plan.Calculate() if plan.Changes.HasChanges() { err = c.Registry.ApplyChanges(ctx, plan.Changes) if err != nil { registryErrorsTotal.Inc() deprecatedRegistryErrors.Inc() return err } } else { controllerNoChangesTotal.Inc() log.Info("All records are already up to date") } lastSyncTimestamp.SetToCurrentTime() return nil } // Checks and returns the intersection of A records in endpoint and registry. func fetchMatchingARecords(endpoints []*endpoint.Endpoint, registryRecords []*endpoint.Endpoint) []string { aRecords := filterARecords(endpoints) recordsMap := make(map[string]struct{}) for _, regRecord := range registryRecords { recordsMap[regRecord.DNSName] = struct{}{} } var cm []string for _, sourceRecord := range aRecords { if _, found := recordsMap[sourceRecord]; found { cm = append(cm, sourceRecord) } } return cm } func filterARecords(endpoints []*endpoint.Endpoint) []string { var aRecords []string for _, endPoint := range endpoints { if endPoint.RecordType == endpoint.RecordTypeA { aRecords = append(aRecords, endPoint.DNSName) } } return aRecords } // ScheduleRunOnce makes sure execution happens at most once per interval. func (c *Controller) ScheduleRunOnce(now time.Time) { c.nextRunAtMux.Lock() defer c.nextRunAtMux.Unlock() c.nextRunAt = now.Add(c.MinEventSyncInterval) } func (c *Controller) ShouldRunOnce(now time.Time) bool { c.nextRunAtMux.Lock() defer c.nextRunAtMux.Unlock() if now.Before(c.nextRunAt) { return false } c.nextRunAt = now.Add(c.Interval) return true } // Run runs RunOnce in a loop with a delay until context is canceled func (c *Controller) Run(ctx context.Context) { ticker := time.NewTicker(time.Second) defer ticker.Stop() for { if c.ShouldRunOnce(time.Now()) { if err := c.RunOnce(ctx); err != nil { log.Error(err) } } select { case <-ticker.C: case <-ctx.Done(): log.Info("Terminating main controller loop") return } } }