Skip to content

Commit

Permalink
Merge pull request #123 from mikenairn/copy_external_dns_aws_provider
Browse files Browse the repository at this point in the history
Copy external dns aws provider
  • Loading branch information
mikenairn authored May 15, 2024
2 parents 9ed49a9 + f801ea1 commit 8ce3f18
Show file tree
Hide file tree
Showing 6 changed files with 3,201 additions and 4 deletions.
7 changes: 4 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ require (
github.com/go-logr/logr v1.3.0
github.com/google/uuid v1.3.1
github.com/goombaio/namegenerator v0.0.0-20181006234301-989e774b106e
github.com/linki/instrumented_http v0.3.0
github.com/onsi/ginkgo/v2 v2.13.2
github.com/onsi/gomega v1.30.0
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.17.0
github.com/rs/xid v1.5.0
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.8.4
google.golang.org/api v0.134.0
Expand Down Expand Up @@ -57,22 +60,20 @@ require (
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/linki/instrumented_http v0.3.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/openshift/api v0.0.0-20230607130528-611114dca681 // indirect
github.com/openshift/client-go v0.0.0-20230607134213-3cd0021bbee3 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/projectcontour/contour v1.25.2 // indirect
github.com/prometheus/client_model v0.5.0 // indirect
github.com/prometheus/common v0.45.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
github.com/rs/xid v1.5.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/objx v0.5.0 // indirect
go.opencensus.io v0.24.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.26.0 // indirect
Expand Down
7 changes: 7 additions & 0 deletions internal/external-dns/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# ExternalDNS

To ease development, code reviews, and make it easier for developers to get up to speed with plan/registry/provider code, we will initially work off a copy of the relevant external-dns code in this repo. When we have a solution that works for us we will look into how we can submit that back to external-dns.

Code is copied, unmodified where possible, from the v0.14.0 version of external-dns. https://github.com/kubernetes-sigs/external-dns/tree/v0.14.0

If you are updating anything from the external-dns repo make sure you use this version, and keep all changes being made to external-dns code in their own commit and mark as "external-dns" in the comments.
Loading

0 comments on commit 8ce3f18

Please sign in to comment.