mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-05 17:16:59 +02:00
138 lines
3.2 KiB
Go
138 lines
3.2 KiB
Go
/*
|
|
Copyright 2022 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 plural
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"sigs.k8s.io/external-dns/endpoint"
|
|
"sigs.k8s.io/external-dns/plan"
|
|
"sigs.k8s.io/external-dns/provider"
|
|
)
|
|
|
|
const (
|
|
CreateAction = "c"
|
|
DeleteAction = "d"
|
|
)
|
|
|
|
type PluralProvider struct {
|
|
provider.BaseProvider
|
|
Client Client
|
|
}
|
|
|
|
type RecordChange struct {
|
|
Action string
|
|
Record *DnsRecord
|
|
}
|
|
|
|
func NewPluralProvider(cluster, provider string) (*PluralProvider, error) {
|
|
token := os.Getenv("PLURAL_ACCESS_TOKEN")
|
|
if token == "" {
|
|
return nil, fmt.Errorf("no plural access token provided, you must set the PLURAL_ACCESS_TOKEN env var")
|
|
}
|
|
|
|
config := &Config{
|
|
Token: token,
|
|
Endpoint: os.Getenv("PLURAL_ENDPOINT"),
|
|
Cluster: cluster,
|
|
Provider: provider,
|
|
}
|
|
|
|
cl, err := NewClient(config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &PluralProvider{
|
|
Client: cl,
|
|
}, nil
|
|
}
|
|
|
|
func (p *PluralProvider) Records(_ context.Context) ([]*endpoint.Endpoint, error) {
|
|
records, err := p.Client.DnsRecords()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
endpoints := make([]*endpoint.Endpoint, len(records))
|
|
for i, record := range records {
|
|
endpoints[i] = endpoint.NewEndpoint(record.Name, record.Type, record.Records...)
|
|
}
|
|
return endpoints, nil
|
|
}
|
|
|
|
func (p *PluralProvider) AdjustEndpoints(endpoints []*endpoint.Endpoint) ([]*endpoint.Endpoint, error) {
|
|
return endpoints, nil
|
|
}
|
|
|
|
func (p *PluralProvider) ApplyChanges(_ context.Context, diffs *plan.Changes) error {
|
|
var changes []*RecordChange
|
|
for _, ep := range diffs.Create {
|
|
changes = append(changes, makeChange(CreateAction, ep.Targets, ep))
|
|
}
|
|
|
|
for _, desired := range diffs.UpdateNew() {
|
|
changes = append(changes, makeChange(CreateAction, desired.Targets, desired))
|
|
}
|
|
|
|
for _, deleted := range diffs.Delete {
|
|
changes = append(changes, makeChange(DeleteAction, []string{}, deleted))
|
|
}
|
|
|
|
return p.applyChanges(changes)
|
|
}
|
|
|
|
func makeChange(change string, target []string, endpoint *endpoint.Endpoint) *RecordChange {
|
|
return &RecordChange{
|
|
Action: change,
|
|
Record: &DnsRecord{
|
|
Name: endpoint.DNSName,
|
|
Type: endpoint.RecordType,
|
|
Records: target,
|
|
},
|
|
}
|
|
}
|
|
|
|
func (p *PluralProvider) applyChanges(changes []*RecordChange) error {
|
|
for _, change := range changes {
|
|
logFields := log.Fields{
|
|
"name": change.Record.Name,
|
|
"type": change.Record.Type,
|
|
"action": change.Action,
|
|
}
|
|
log.WithFields(logFields).Info("Changing record.")
|
|
|
|
if change.Action == CreateAction {
|
|
_, err := p.Client.CreateRecord(change.Record)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if change.Action == DeleteAction {
|
|
if err := p.Client.DeleteRecord(change.Record.Name, change.Record.Type); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|