Thibault Jamet
a6ab2badce
Update docs/tutorials/aws.md
2024-08-14 11:36:47 +02:00
Thibault Jamet
ef0dd29cf5
Apply suggestions from code review
...
Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com>
2024-08-14 10:21:00 +02:00
Thibault Jamet
309f34f4f5
Add an advanced topic about rate limits
2024-08-14 10:21:00 +02:00
Thibault Jamet
2955e5d456
Apply suggestions from code review
...
Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com>
2024-08-14 10:21:00 +02:00
Thibault Jamet
089744c6ff
Add cache at provider level
...
**Description**
In the current implementation, DNS providers are called to list all
records on every loop. This is expensive in terms of number of requests
to the provider and may result in being rate limited, as reported in 1293
and 3397.
In our case, we have approximately 20,000 records in our AWS Hosted Zone.
The ListResourceRecordSets API call allows a maximum of 300 items per call.
That requires 67 API calls per external-dns deployment during every sync period
With this, we introduce an optional generic caching mechanism at the provider
level, that re-uses the latest known list of records for a given time.
This prevents from expensive Provider calls to list all records for each
object modification that does not change the actual record (annotations,
statuses, ingress routing, ...)
This introduces 2 trade-offs:
1. Any changes or corruption directly on the provider side will be
longer to detect and to resolve, up to the cache time
2. Any conflicting records in the DNS provider (such as a different
external-dns instance) injected during the cache validity will cause
the first iteration of the next reconcile loop to fail, and hence add a
delay until the next retry
**Checklist**
- [X] Unit tests updated
- [X] End user documentation updated
Change-Id: I0bdcfa994ac1b76acedb05d458a97c080284c5aa
2024-08-14 10:20:56 +02:00
Kubernetes Prow Robot
c875e65d8d
Merge pull request #3400 from tjamet/min-event-sync
...
Improve MinEventInterval compliance with docs
2024-08-13 06:22:13 -07:00
Kubernetes Prow Robot
852087e21c
Merge pull request #4577 from pier-oliviert/helm-route-53-docs
...
AWS: Change documentation to use Helm values
2024-08-09 02:57:44 -07:00
Kubernetes Prow Robot
1ceaf798ae
Merge pull request #4663 from orgads/patch-1
...
azure-private-dns: Fix LoadBalancer example
2024-08-07 07:48:53 -07:00
Orgad Shaneh
f7e8ca19b3
azure-private-dns: Fix LoadBalancer example
...
annotations should be inside the metadata object.
2024-08-07 08:05:06 +03:00
Massimiliano Donini
53f4465823
Nit: Fix hyperlink
...
PR #4365 changed the anchor in the readme, this change fixes few outdated links
2024-08-07 06:53:56 +02:00
Thibault Jamet
1b5ed44e48
Improve documentation
2024-08-06 08:52:30 +02:00
Saravanan Palanisamy
f4eeeae7f7
update pdns tutorial documentation
2024-08-02 16:20:03 +04:00
Kubernetes Prow Robot
4da484b7e4
Merge pull request #4610 from abursavich/gateway-api
...
Gateway API: Revert Gateway and HTTPRoute objects from v1 to v1beta1
2024-07-27 01:33:34 -07:00
Andy Bursavich
2daa842eb7
docs/gateway-api: update supported API versions
2024-07-14 09:07:17 -07:00
ThameezBo
e9968d839c
fix: update docs as per review
2024-07-14 14:17:55 +02:00
Thomas Hopkins
9f29d3c188
docs(annotations): note how to set multiple hostnames
...
Setting multiple hostnames through this annotation has been possible since #256 , but this behavior has not been sufficiently documented before.
2024-07-10 11:07:22 -04:00
Tobia Bocchi
8728b25f71
Update cloudflare.md
...
Hey! I was trying out external-dns using cloudflare. I followed your docs and managed to deploy it successfully on my k3s cluster. While reading the docs and copying pasting the yaml files I noticed there was some inconsistencies with the indentation..
I am no kubernetes expert, I just fixed the problems that were not allowing me to deploy this service and checked the files using yamllint.com
While I was at it I also noticed a few errors on the syntax highlighting for code blocks, some had shell where the content was yaml, I fixed those too..
I hope this helps, thank you for this amazing project!
2024-06-29 15:39:52 +02:00
Pier-Olivier Thibault
bbaa3eb290
Attempts at making the docs more clear with secret volume
...
The secret includes keys/value pair and a secret, when mounted as a
volume, will generate a file for each of the pair where the name of the
file is the key and the content of the file, the value.
This hopefully makes the doc clear on how to configured credentials.
2024-06-27 12:14:05 -04:00
Pier-Olivier Thibault
4c86e53d01
Update docs/tutorials/aws.md
...
Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com>
2024-06-27 11:48:45 -04:00
Pier-Olivier Thibault
e49c141ced
Update docs/tutorials/aws.md
...
Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com>
2024-06-27 11:48:41 -04:00
Pier-Olivier Thibault
edb2513a06
Add configuration option for non-eks with Helm
2024-06-27 09:59:40 -04:00
Pier-Olivier Thibault
dd0667849c
Change header to be consistent within the section
2024-06-27 09:56:44 -04:00
Pier-Olivier Thibault
c7138b8a15
Update docs/tutorials/aws.md
...
Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com>
2024-06-27 09:44:32 -04:00
Pier-Olivier Thibault
ebd3a7eafb
AWS: Change documentation to use Helm values
...
The Helm section includes templates files that aren't needed as those
values can all be generated from the values.yaml file. It seems that the
current documentation also missed the role arn annotation so it was
added as well.
2024-06-26 10:46:34 -04:00
Kubernetes Prow Robot
8245b89891
Merge pull request #4283 from angeloxx/feature/rfc-2136-ptr
...
feat(rfc2136): add PTR optional support
2024-06-20 00:44:17 -07:00
Kubernetes Prow Robot
b84fc93843
Merge pull request #4378 from mloiseleur/docs/upgrade-mkdocs
...
docs: upgrade mkdocs and fix broken links
2024-06-11 00:26:01 -07:00
Kubernetes Prow Robot
0ba14d8873
Merge pull request #3973 from c445/roehrijn/aws-profiles
...
feat(aws): use AWS profiles using .credentials file
2024-06-10 13:59:23 -07:00
Alessandro Zanatta
cd4ad36873
Add documentation about etcd HTTPS for CoreDNS provider
2024-06-09 08:53:27 +02:00
Michel Loiseleur
233c46e83e
mkdocs on root level
2024-06-07 08:16:15 +02:00
Michel Loiseleur
3773411a5a
docs: upgrade mkdocs and fix warnings
2024-06-07 08:15:44 +02:00
Kubernetes Prow Robot
e608c9e9d1
Merge pull request #4516 from mloiseleur/feat/drop-infobox-provider
...
chore!: Remove infoblox in-tree provider
2024-06-06 10:00:17 -07:00
Maria Salcedo
00910b1cfc
docs(footer): Add trademark disclaimer
2024-06-05 10:47:00 +02:00
Michel Loiseleur
84da6be1dd
chore: Remove infoblox in-tree provider
2024-05-29 16:01:45 +02:00
matthieugouel
57c351b66f
feat(coredns): etcd authentication
2024-05-27 11:36:17 +02:00
Kubernetes Prow Robot
b4eea99efe
Merge pull request #4458 from Raffo/webhook-annotations
...
feat(webhooks): pass webhook-* annotations to webhook providers
2024-05-24 08:51:11 -07:00
Raffaele Di Fazio
bfa4e0620d
custom metrics docs
2024-05-24 17:31:44 +02:00
Morre
c0a183b006
fix: re-add api-approved.kubernetes.io annotation
2024-05-21 09:27:03 +02:00
Raffaele Di Fazio
226dbb931f
update docs to v0.14.2
2024-05-18 18:32:35 +02:00
Robert Jensen
5084f3e234
changed documentation to include more details description when using api tokens
2024-05-15 13:42:43 +02:00
ThameezBo
fdb2475892
fix: docs
2024-05-13 22:42:16 +02:00
ThameezBo
bd33e5e277
feat: support dualstack Gateway route resources
2024-05-13 22:41:42 +02:00
Kubernetes Prow Robot
551ee96c23
Merge pull request #4456 from DrFaust92/gke-docs
...
docs: lint gke docs + make terraform config more secure
2024-05-13 00:19:45 -07:00
Stefan Lasiewski
d3212c36a9
Fix headings, whitespace
...
Fixed headings around "Secure Updates" .
Also fixed a couple of whitespace issues.
2024-05-10 18:51:11 -07:00
Kubernetes Prow Robot
6b510682ed
Merge pull request #4449 from mfreeman451/patch-1
...
Update cloudflare.md
2024-05-10 04:31:27 -07:00
Kubernetes Prow Robot
fac5b44cfc
Merge pull request #4324 from PseudoResonance/master
...
Add IPv6 AAAA record support to PiHole provider
2024-05-10 04:07:45 -07:00
drfaust92
113b775f02
lint gke docs + make tf config more secure
...
Signed-off-by: drfaust92 <ilia.lazebnik@gmail.com>
2024-05-10 13:06:24 +03:00
Michael Freeman
e0799293c3
Update cloudflare.md
...
missing clear instructions on where to find the chart, without this the upgrade command will not work.
2024-05-08 00:47:37 -05:00
ilyes Ajroud
7a9af84300
fix syntax on cloudflare externalDNS
2024-05-06 20:48:21 +01:00
Kubernetes Prow Robot
b416018b34
Merge pull request #4405 from omerap12/docs/helm-documentation
...
docs: add setup example with helm chart on some providers
2024-04-30 13:09:48 -07:00
Omer
82fd2773be
Remove version flag from helm command
2024-04-27 08:23:57 +03:00
Omer
9d41b48146
removed unused files
2024-04-27 00:36:29 +03:00
Omer
51b35cb0ac
Add spaces
2024-04-27 00:35:12 +03:00
Omer
a37d4972a3
Add spaces
2024-04-27 00:32:56 +03:00
Omer
4e655fbc2e
Add spaces
2024-04-27 00:31:17 +03:00
Omer
5ca2a29119
Add spaces
2024-04-27 00:30:57 +03:00
Omer
689f9ffa4f
Add spaces
2024-04-27 00:29:38 +03:00
Omer
c3e8e0997c
Add spaces
2024-04-27 00:23:55 +03:00
Omer
a6585190f4
Add spaces
2024-04-27 00:23:21 +03:00
Omer
bd44a29ac6
Add spaces
2024-04-27 00:22:46 +03:00
Omer
7e7d452de5
Add spaces
2024-04-27 00:22:14 +03:00
Omer
0a1f6d77ef
Change secret name
2024-04-26 22:43:31 +03:00
Omer
399940f985
Added helm docs to plural
2024-04-26 22:42:01 +03:00
Omer
2c87289ee6
Added helm docs to vult
2024-04-26 22:34:34 +03:00
Omer
8d6e87ff1c
Added helm docs to aws
2024-04-26 22:27:40 +03:00
Omer
66592c7b25
Added helm docs to godaddy
2024-04-26 22:21:22 +03:00
Omer
19f149f660
Added helm docs to digitalocean
2024-04-26 18:38:58 +03:00
Omer
3e54746681
Fixed typo
2024-04-26 18:37:18 +03:00
Omer
dcbcdd5084
Fixed typo
2024-04-26 18:36:43 +03:00
Omer
739993c69d
Added helm docs to ns1
2024-04-26 18:31:41 +03:00
PseudoResonance
332f679cc0
Merge branch 'master' of https://github.com/kubernetes-sigs/external-dns
2024-04-26 05:05:26 -07:00
Khue Doan
b16d1b3a4b
Merge branch 'master' into az-private-dns-zone-name-filter
2024-04-26 00:31:11 +07:00
Kubernetes Prow Robot
c006a49596
Merge pull request #4415 from jonas-budde/docs--annotation-placement-for-azuredns-tutorial
...
docs: annotation placement for azuredns tutorial
2024-04-25 09:00:09 -07:00
Kubernetes Prow Robot
aee99e21f3
Merge pull request #4274 from IntegralProgrammer/dnsimple-user-api-token
...
feat(DNSimple): User API tokens
2024-04-25 08:17:56 -07:00
Kubernetes Prow Robot
9f81bbeaaa
Merge pull request #4210 from Jeremy-Boyle/feature/azure-add-endpoints-4209
...
custom Azure Active Directory Authority Host
2024-04-25 08:17:38 -07:00
jonas-budde
28181e49fe
add fix
2024-04-25 08:45:03 +02:00
Omer
83b3ed110a
Added helm docks to akami-edgedns
2024-04-24 20:10:49 +03:00
Omer
de07d9dbda
Set all credentials in secrets
2024-04-24 20:09:53 +03:00
Omer
a7e487d413
Revert changes to charts/external-dns/README.md and add helm docs for docs/tutorials/cloudflare.md
2024-04-24 19:52:46 +03:00
dongjiang1989
4e6dd80301
update controller-tools version
...
Signed-off-by: dongjiang1989 <dongjiang1989@126.com>
2024-04-22 16:16:49 +08:00
Kubernetes Prow Robot
de08c4e5f2
Merge pull request #4373 from userbradley/master
...
docs(gke): detail how to configure workload identity
2024-04-18 09:19:21 -07:00
Jeremy-Boyle
104adb0b0b
Added documentation for overriding the activeDirectoryAuthorityHost
2024-04-16 10:11:57 -07:00
Federico François
6a95a095ac
docs(aws): fix typo and upgrade cleanup flow
...
Signed-off-by: Federico François <federico.francois@kiratech.it>
2024-04-16 17:29:14 +02:00
PseudoResonance
a48287b5e0
Add PiHole IPv6/AAAA tests/documentation
...
Signed-off-by: PseudoResonance <kaio11604@gmail.com>
2024-04-09 21:58:14 -07:00
Bradley
db3630d583
Moving workload identity up in the docs as users should avoid using static credentials or the node service accounts as per googles best practices [noted here]( https://cloud.google.com/iam/docs/best-practices-for-managing-service-account-keys#alternatives ) and their [flow diagram]( https://cloud.google.com/docs/authentication#auth-decision-tree ) where it noted GKE users should use workload identity
2024-04-09 11:53:07 +01:00
Bradley
9e47e5c584
Updating GKE docs on workload identity
2024-04-09 11:49:52 +01:00
Khue Doan
3852a3697d
docs(azure): describe --zone-name-filter behavior
2024-03-28 21:43:15 +07:00
Kubernetes Prow Robot
cfdfbd5b73
Merge pull request #4318 from mloiseleur/chore/go1.22
...
chore: upgrade ExternalDNS to go 1.22
2024-03-23 10:18:30 -07:00
Raffaele Di Fazio
672e2c029f
replace all links in tutorials for v0.14.1
...
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
2024-03-22 17:14:35 +01:00
angeloxx
cd2088dff3
Merged from master and tested.
2024-03-19 13:27:17 +01:00
Michael Lescisin
3eb852fe2a
Allow for DNSimple User API tokens to be used by implementing the DNSIMPLE_ACCOUNT_ID and DNSIMPLE_ZONES environment variables
...
Grammar fix in docs/tutorials/dnsimple.md
Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com>
2024-03-15 13:03:53 -04:00
Michel Loiseleur
251d579d2e
chore: upgrade ExternalDNS to go 1.22
2024-03-14 08:34:57 +01:00
Kubernetes Prow Robot
3a2da65e36
Merge pull request #4120 from fad3t/feat-amb-provider-specific
...
feat(ambassador): add support for provider specific annotations
2024-03-12 07:17:27 -07:00
Jan Roehrich
d298517539
add AWS profile aspect to documentation
2024-03-05 23:06:19 +01:00
Kubernetes Prow Robot
edd09daa9b
Merge pull request #4252 from mloiseleur/doc/azure2
...
doc: explain how to use Azure internal load balancer
2024-02-29 10:01:08 -08:00
Kubernetes Prow Robot
8d3eb3a3ff
Merge pull request #3974 from iteratee/rfc2136-dns-over-tls
...
RFC2136: Add support for DNS-over-TLS
2024-02-29 10:00:41 -08:00
Kubernetes Prow Robot
edab7eb522
Merge pull request #4249 from deadlybore/gandi_pat_support
...
feat(gandi): add support for personal access token
2024-02-27 12:47:00 -08:00
Kyle Butt
1030de7da9
RFC2136: Document DNS-over-TLS
...
Add a note about the TLS flags to the RFC2136 Tutorial.
2024-02-26 11:23:34 -07:00
Michael Lescisin
ea2d259485
Allow for DNSimple User API tokens to be used by implementing the DNSIMPLE_ACCOUNT_ID and DNSIMPLE_ZONES environment variables
...
Update documentation for these new environment variables
2024-02-26 10:48:16 -05:00
angeloxx
b083e34dfb
Rename option with --rfc2136-create-ptr, similar to infoblox option
2024-02-25 18:50:35 +01:00
angeloxx
940899b758
Add command line parameter and update helm
2024-02-25 18:40:12 +01:00
Frederic Mereu
f721b415db
docs: provider-specific annotations for ambassador
2024-02-12 11:40:29 +01:00
Dimitri Delabroye
da4c99030a
feat(gandi): add support for personal access token
2024-02-12 09:40:18 +01:00
Michel Loiseleur
b07ecfb7ae
doc: explain how to use Azure internal load balancer
2024-02-11 11:35:38 +01:00
Andrew Hay
e7987e1ab1
Update link to current workshop ( #4170 )
...
* Update link to current workshop
The old link shows that the workshop has been updated and points you to a different one
* fix(pdns): provider implicitly changes CNAME to ALIAS
Fixes: https://github.com/kubernetes-sigs/external-dns/issues/3970
* feat: add debug message to CNAME to ALIAS conversion
Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com>
* fix(chart): Fix webhook install failure (#4173 )
* fix(chart): Fix webhook install failure
* chore(chart): Update chart metadata
* fix: provide possibility to have a soft error mode to only log error and not fatal
Signed-off-by: Sandor Szücs <sandor.szuecs@zalando.de>
* fix: provide possibility to have a soft error mode to only log error and not fatal
Signed-off-by: Sandor Szücs <sandor.szuecs@zalando.de>
* doc: add godoc
Signed-off-by: Sandor Szücs <sandor.szuecs@zalando.de>
* [helm] Allow tpl in provider again (#4180 )
* [helm] Allow tpl in provider again
Signed-off-by: Jan-Otto Kröpke <joe@cloudeteer.de>
* bump version and changelog
Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
* re-run helm-docs
Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
---------
Signed-off-by: Jan-Otto Kröpke <joe@cloudeteer.de>
Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
* Fix args for webhook deployment (#4202 )
* Fix args for webhook deployment
The upfront bullet point resulted in `- ""` and could brake the webhook container.
* Add changeloog
* add RBAC fix to namespaces - get, watch, list to each gateway-*route (#4205 )
* add RBAC fix to namespaces - get, watch, list to each gateway-*route
* fix conflicts
* resolve conflicts
* Apply suggestions from code review
Co-authored-by: Steve Hipwell <steve.hipwell@gmail.com>
---------
Co-authored-by: Steve Hipwell <steve.hipwell@gmail.com>
* chore: Released chart v1.14.3
Signed-off-by: Steve Hipwell <steve.hipwell@gmail.com>
* build(deps): bump the dev-dependencies group with 24 updates
Bumps the dev-dependencies group with 24 updates:
| Package | From | To |
| --- | --- | --- |
| [github.com/Azure/azure-sdk-for-go/sdk/azidentity](https://github.com/Azure/azure-sdk-for-go ) | `1.4.0` | `1.5.1` |
| [github.com/F5Networks/k8s-bigip-ctlr/v2](https://github.com/F5Networks/k8s-bigip-ctlr ) | `2.15.0` | `2.15.1` |
| [github.com/IBM/go-sdk-core/v5](https://github.com/IBM/go-sdk-core ) | `5.15.0` | `5.15.1` |
| [github.com/aliyun/alibaba-cloud-sdk-go](https://github.com/aliyun/alibaba-cloud-sdk-go ) | `1.62.652` | `1.62.673` |
| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go ) | `1.49.15` | `1.50.9` |
| [github.com/civo/civogo](https://github.com/civo/civogo ) | `0.3.56` | `0.3.58` |
| [github.com/cloudflare/cloudflare-go](https://github.com/cloudflare/cloudflare-go ) | `0.85.0` | `0.87.0` |
| [github.com/digitalocean/godo](https://github.com/digitalocean/godo ) | `1.107.0` | `1.108.0` |
| [github.com/infobloxopen/infoblox-go-client/v2](https://github.com/infobloxopen/infoblox-go-client ) | `2.4.0` | `2.5.0` |
| [github.com/linode/linodego](https://github.com/linode/linodego ) | `1.26.0` | `1.28.0` |
| [github.com/miekg/dns](https://github.com/miekg/dns ) | `1.1.57` | `1.1.58` |
| [github.com/oracle/oci-go-sdk/v65](https://github.com/oracle/oci-go-sdk ) | `65.55.0` | `65.57.0` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common](https://github.com/tencentcloud/tencentcloud-sdk-go ) | `1.0.834` | `1.0.856` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod](https://github.com/tencentcloud/tencentcloud-sdk-go ) | `1.0.834` | `1.0.856` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns](https://github.com/tencentcloud/tencentcloud-sdk-go ) | `1.0.834` | `1.0.856` |
| [go.etcd.io/etcd/api/v3](https://github.com/etcd-io/etcd ) | `3.5.11` | `3.5.12` |
| [go.etcd.io/etcd/client/v3](https://github.com/etcd-io/etcd ) | `3.5.11` | `3.5.12` |
| [golang.org/x/oauth2](https://github.com/golang/oauth2 ) | `0.15.0` | `0.16.0` |
| [google.golang.org/api](https://github.com/googleapis/google-api-go-client ) | `0.155.0` | `0.161.0` |
| [istio.io/api](https://github.com/istio/api ) | `1.20.1` | `1.20.2` |
| [istio.io/client-go](https://github.com/istio/client-go ) | `1.20.1` | `1.20.2` |
| [k8s.io/api](https://github.com/kubernetes/api ) | `0.29.0` | `0.29.1` |
| [k8s.io/client-go](https://github.com/kubernetes/client-go ) | `0.29.0` | `0.29.1` |
| [k8s.io/klog/v2](https://github.com/kubernetes/klog ) | `2.110.1` | `2.120.1` |
Updates `github.com/Azure/azure-sdk-for-go/sdk/azidentity` from 1.4.0 to 1.5.1
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases )
- [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md )
- [Commits](https://github.com/Azure/azure-sdk-for-go/compare/sdk/azcore/v1.4.0...sdk/internal/v1.5.1 )
Updates `github.com/F5Networks/k8s-bigip-ctlr/v2` from 2.15.0 to 2.15.1
- [Release notes](https://github.com/F5Networks/k8s-bigip-ctlr/releases )
- [Changelog](https://github.com/F5Networks/k8s-bigip-ctlr/blob/v2.15.1/docs/RELEASE-NOTES.rst )
- [Commits](https://github.com/F5Networks/k8s-bigip-ctlr/compare/v2.15.0...v2.15.1 )
Updates `github.com/IBM/go-sdk-core/v5` from 5.15.0 to 5.15.1
- [Release notes](https://github.com/IBM/go-sdk-core/releases )
- [Changelog](https://github.com/IBM/go-sdk-core/blob/main/CHANGELOG.md )
- [Commits](https://github.com/IBM/go-sdk-core/compare/v5.15.0...v5.15.1 )
Updates `github.com/aliyun/alibaba-cloud-sdk-go` from 1.62.652 to 1.62.673
- [Release notes](https://github.com/aliyun/alibaba-cloud-sdk-go/releases )
- [Changelog](https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/ChangeLog.txt )
- [Commits](https://github.com/aliyun/alibaba-cloud-sdk-go/compare/v1.62.652...v1.62.673 )
Updates `github.com/aws/aws-sdk-go` from 1.49.15 to 1.50.9
- [Release notes](https://github.com/aws/aws-sdk-go/releases )
- [Commits](https://github.com/aws/aws-sdk-go/compare/v1.49.15...v1.50.9 )
Updates `github.com/civo/civogo` from 0.3.56 to 0.3.58
- [Release notes](https://github.com/civo/civogo/releases )
- [Changelog](https://github.com/civo/civogo/blob/master/changelog.yml )
- [Commits](https://github.com/civo/civogo/compare/v0.3.56...v0.3.58 )
Updates `github.com/cloudflare/cloudflare-go` from 0.85.0 to 0.87.0
- [Release notes](https://github.com/cloudflare/cloudflare-go/releases )
- [Changelog](https://github.com/cloudflare/cloudflare-go/blob/master/CHANGELOG.md )
- [Commits](https://github.com/cloudflare/cloudflare-go/compare/v0.85.0...v0.87.0 )
Updates `github.com/digitalocean/godo` from 1.107.0 to 1.108.0
- [Release notes](https://github.com/digitalocean/godo/releases )
- [Changelog](https://github.com/digitalocean/godo/blob/main/CHANGELOG.md )
- [Commits](https://github.com/digitalocean/godo/compare/v1.107.0...v1.108.0 )
Updates `github.com/infobloxopen/infoblox-go-client/v2` from 2.4.0 to 2.5.0
- [Release notes](https://github.com/infobloxopen/infoblox-go-client/releases )
- [Changelog](https://github.com/infobloxopen/infoblox-go-client/blob/master/CHANGELOG.md )
- [Commits](https://github.com/infobloxopen/infoblox-go-client/commits )
Updates `github.com/linode/linodego` from 1.26.0 to 1.28.0
- [Release notes](https://github.com/linode/linodego/releases )
- [Commits](https://github.com/linode/linodego/compare/v1.26.0...v1.28.0 )
Updates `github.com/miekg/dns` from 1.1.57 to 1.1.58
- [Changelog](https://github.com/miekg/dns/blob/master/Makefile.release )
- [Commits](https://github.com/miekg/dns/compare/v1.1.57...v1.1.58 )
Updates `github.com/oracle/oci-go-sdk/v65` from 65.55.0 to 65.57.0
- [Release notes](https://github.com/oracle/oci-go-sdk/releases )
- [Changelog](https://github.com/oracle/oci-go-sdk/blob/master/CHANGELOG.md )
- [Commits](https://github.com/oracle/oci-go-sdk/compare/v65.55.0...v65.57.0 )
Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common` from 1.0.834 to 1.0.856
- [Commits](https://github.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.834...v1.0.856 )
Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod` from 1.0.834 to 1.0.856
- [Commits](https://github.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.834...v1.0.856 )
Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns` from 1.0.834 to 1.0.856
- [Commits](https://github.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.834...v1.0.856 )
Updates `go.etcd.io/etcd/api/v3` from 3.5.11 to 3.5.12
- [Release notes](https://github.com/etcd-io/etcd/releases )
- [Commits](https://github.com/etcd-io/etcd/compare/v3.5.11...v3.5.12 )
Updates `go.etcd.io/etcd/client/v3` from 3.5.11 to 3.5.12
- [Release notes](https://github.com/etcd-io/etcd/releases )
- [Commits](https://github.com/etcd-io/etcd/compare/v3.5.11...v3.5.12 )
Updates `golang.org/x/oauth2` from 0.15.0 to 0.16.0
- [Commits](https://github.com/golang/oauth2/compare/v0.15.0...v0.16.0 )
Updates `google.golang.org/api` from 0.155.0 to 0.161.0
- [Release notes](https://github.com/googleapis/google-api-go-client/releases )
- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md )
- [Commits](https://github.com/googleapis/google-api-go-client/compare/v0.155.0...v0.161.0 )
Updates `istio.io/api` from 1.20.1 to 1.20.2
- [Commits](https://github.com/istio/api/compare/1.20.1...1.20.2 )
Updates `istio.io/client-go` from 1.20.1 to 1.20.2
- [Commits](https://github.com/istio/client-go/compare/1.20.1...1.20.2 )
Updates `k8s.io/api` from 0.29.0 to 0.29.1
- [Commits](https://github.com/kubernetes/api/compare/v0.29.0...v0.29.1 )
Updates `k8s.io/client-go` from 0.29.0 to 0.29.1
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md )
- [Commits](https://github.com/kubernetes/client-go/compare/v0.29.0...v0.29.1 )
Updates `k8s.io/klog/v2` from 2.110.1 to 2.120.1
- [Release notes](https://github.com/kubernetes/klog/releases )
- [Changelog](https://github.com/kubernetes/klog/blob/main/RELEASE.md )
- [Commits](https://github.com/kubernetes/klog/compare/v2.110.1...v2.120.1 )
---
updated-dependencies:
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azidentity
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dev-dependencies
- dependency-name: github.com/F5Networks/k8s-bigip-ctlr/v2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dev-dependencies
- dependency-name: github.com/IBM/go-sdk-core/v5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dev-dependencies
- dependency-name: github.com/aliyun/alibaba-cloud-sdk-go
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dev-dependencies
- dependency-name: github.com/aws/aws-sdk-go
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dev-dependencies
- dependency-name: github.com/civo/civogo
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dev-dependencies
- dependency-name: github.com/cloudflare/cloudflare-go
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dev-dependencies
- dependency-name: github.com/digitalocean/godo
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dev-dependencies
- dependency-name: github.com/infobloxopen/infoblox-go-client/v2
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dev-dependencies
- dependency-name: github.com/linode/linodego
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dev-dependencies
- dependency-name: github.com/miekg/dns
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dev-dependencies
- dependency-name: github.com/oracle/oci-go-sdk/v65
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dev-dependencies
- dependency-name: github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dev-dependencies
- dependency-name: github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dev-dependencies
- dependency-name: github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dev-dependencies
- dependency-name: go.etcd.io/etcd/api/v3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dev-dependencies
- dependency-name: go.etcd.io/etcd/client/v3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dev-dependencies
- dependency-name: golang.org/x/oauth2
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dev-dependencies
- dependency-name: google.golang.org/api
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dev-dependencies
- dependency-name: istio.io/api
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dev-dependencies
- dependency-name: istio.io/client-go
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dev-dependencies
- dependency-name: k8s.io/api
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dev-dependencies
- dependency-name: k8s.io/client-go
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dev-dependencies
- dependency-name: k8s.io/klog/v2
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dev-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com>
* Fix "workload identity" spelling
* feat(aws-provider): create flag to support sub-domains match parent
The current implementation of external-dns from sig-external-dns does
not support domain filtering (--domain-filter) for sub-domains on Route53,
such as test.sub-domain.domain.com. The function MatchParent was recently
removed from the base code, but it is still necessary for this purpose.
An example of a use case for this support is having a cluster per hosted
zone with a hundred ingress related to that zone with different variants of
sub-domains. With the matchParent function and zone-match-parent flag,
external-dns will now support an extended automatic match for sub-domains.
* test(types): adding missing test to aws-zone-match-parent flag
* docs(aws-provider): add aws-zone-match-parent use
* docs(aws): refactor explanation of aws-zone-match-parent
* fix(aws-provider): add aws-zone-match-parent flag value to aws config
---------
Signed-off-by: Sandor Szücs <sandor.szuecs@zalando.de>
Signed-off-by: Jan-Otto Kröpke <joe@cloudeteer.de>
Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
Signed-off-by: Steve Hipwell <steve.hipwell@gmail.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Thomas Maroschik <tmaroschik@dfau.de>
Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com>
Co-authored-by: Gabe Cook <gabe565@gmail.com>
Co-authored-by: Sandor Szücs <sandor.szuecs@zalando.de>
Co-authored-by: Jan-Otto Kröpke <mail@jkroepke.de>
Co-authored-by: Tobias Bradtke <webwurst@gmail.com>
Co-authored-by: orenlevi111 <121795464+orenlevi111@users.noreply.github.com>
Co-authored-by: Steve Hipwell <steve.hipwell@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Greg Dubicki <566632+gdubicki@users.noreply.github.com>
Co-authored-by: thiagoluiznunes <thiagoluiz.dev@gmail.com>
2024-02-10 10:03:27 -08:00
Megum1n
7d3d355175
Merge branch 'master' into aws-provider-validate-value-size
2024-02-07 16:27:36 +01:00
thiagoluiznunes
ca4f3ae12b
fix(aws-provider): add aws-zone-match-parent flag value to aws config
2024-02-06 18:36:06 -03:00
thiagoluiznunes
6970972b6d
docs(aws): refactor explanation of aws-zone-match-parent
2024-02-06 15:20:02 -03:00
thiagoluiznunes
5a0263b510
docs(aws-provider): add aws-zone-match-parent use
2024-02-06 11:24:15 -03:00
Greg Dubicki
ea45cc665d
Fix "workload identity" spelling
2024-01-23 12:13:52 +00:00
Megum1n
1a8bbd3af3
Fix typo in docs
2024-01-12 00:20:54 +01:00
Michel Loiseleur
0009a6b67b
feat: support webhook provider in Chart ( #4032 )
...
* BREAKING CHANGE: 💥 support webhook provider in Chart
* add /healthz to webhook tutorial
* keep backward compatibility
* moved images to values
* Update charts/external-dns/values.yaml
Co-authored-by: Steve Hipwell <steve.hipwell@gmail.com>
* fixed name for sidecar + doc update + externalVolumeMounts
* add serviceMonitor endpoint, improve webhook provider tutorial and differentiate probes
* doc: use helm-docs for README
* fix rebase error
* Apply suggestions from code review
Co-authored-by: Steve Hipwell <steve.hipwell@gmail.com>
* introduce external-dns.webhookImage to match current image function
* fix port name of probes
* update template with webhook provider support
* Apply suggestions from code review
Co-authored-by: Steve Hipwell <steve.hipwell@gmail.com>
* Update charts/external-dns/templates/deployment.yaml
Co-authored-by: Steve Hipwell <steve.hipwell@gmail.com>
* Update charts/external-dns/templates/deployment.yaml
Co-authored-by: Steve Hipwell <steve.hipwell@gmail.com>
* following review on provider.name doc
* remove secretConfiguration on webhook
---------
Co-authored-by: Steve Hipwell <steve.hipwell@gmail.com>
2024-01-09 15:32:57 +01:00
Steve Hipwell
411a8aab89
chore(chart): Deprecated secretConfiguration
...
Signed-off-by: Steve Hipwell <steve.hipwell@gmail.com>
2024-01-08 10:23:20 +00:00
Kubernetes Prow Robot
fb85418d03
Merge pull request #4094 from KarstenSiemer/fix/istio_gateway/AppendExternalIPsToTargets
...
fix(istio): support for ExternalIPs in Istio resources
2024-01-05 20:04:56 +01:00
Manuel Rüger
540990e00c
webhook: Fix metric name and add request gauges
...
Signed-off-by: Manuel Rüger <manuel@rueg.eu>
2024-01-03 04:42:06 +01:00
Kubernetes Prow Robot
2446baa991
Merge pull request #4133 from thesse1/patch-1
...
doc(azure): shows how to use userAssignedIdentityID with clientId in azure.json
2023-12-30 13:13:26 +01:00
Kubernetes Prow Robot
97a8fa3195
Merge pull request #4076 from k8r-io/fix-hangs-on-traefik-listeners
...
Fix timeout for traefik-proxy source
2023-12-27 17:22:52 +01:00
Kristopher Kirkland
9f29220c16
Doc update
2023-12-22 17:58:55 -06:00
Thomas Hesse
df122b03fd
Documentation update - solves issue #4132
...
Adding userAssignedIdentityID of the kubelet identity solves the problem with multiple parallel node pool identities - issue #4132
2023-12-21 22:57:51 +01:00
Megum1n
126c5130b1
Update AWS provider documentation regarding batch size options
2023-12-21 02:52:48 +01:00
Jongwoo Han
7928482acc
Correct typo from 'Kuberntes' to 'Kubernetes'
...
Signed-off-by: Jongwoo Han <jongwooo.han@gmail.com>
2023-12-17 11:56:17 +09:00
Karsten Siemer
a3eaccab34
feat(istio): enhance Istio tutorial document
...
ℹ️ We're making the Istio tutorial more user-friendly! 💡 We've added extra
context and instructions related to how external-dns can gather information
from the Kubernetes service of the Istio Ingress Gateway. Also, we've guided
users on setting targets manually with the appropriate annotation. 😎
Changes include:
- Illustration on how to get targets to extracted DNS names using external-dns
- Guidance to the source service documentation for more understanding 📚
- Steps to manually set targets using the 'external-dns.alpha.kubernetes.io/target'
annotation on the Istio Ingress Gateway resource or the Istio VirtualService.
2023-12-06 10:41:21 +01:00
Kubernetes Prow Robot
0e63390955
Merge pull request #4036 from tanerm/docs/infoblox-arg
...
doc: added --infoblox-view argument to Infoblox documentation
2023-11-16 21:20:08 +01:00
Kubernetes Prow Robot
fb584aab33
Merge pull request #4049 from anders-swanson/oracle-provider-cache
...
oracle provider: dns zone cache
2023-11-15 13:12:54 +01:00
Kubernetes Prow Robot
c2eb6747f7
Merge pull request #4007 from nokia/master
...
service source uses externalIPs in ExternalName type if available
2023-11-15 13:12:27 +01:00
Kubernetes Prow Robot
04c4b505a6
Merge pull request #3964 from johngmyers/ignore-host-ann
...
Make --ignore-hostname-annotation flag more consistent
2023-11-15 13:12:18 +01:00
Kubernetes Prow Robot
dc9ca456b6
Merge pull request #3794 from kundan2707/ultradns_update_link
...
updated various broken link in ultradns tutorial
2023-11-15 12:50:46 +01:00
Anders Swanson
dbaca73de2
oracle provider: dns zone cache
...
Signed-off-by: Anders Swanson <anders.swanson@oracle.com>
2023-11-14 12:59:45 -08:00
tanerm
c58e84713c
Added --infoblox-view argument to Infoblox documentation
2023-11-12 23:26:00 +03:00
Raffaele Di Fazio
5b5d68f45a
updates all versions in documentation
...
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
2023-11-11 17:15:49 +01:00
Kubernetes Prow Robot
0c8002b191
Merge pull request #3976 from CRASH-Tech/master
...
RFC2136: Allow multiple zones
2023-11-10 09:15:19 +01:00
Kubernetes Prow Robot
1bfce6a8b5
Merge pull request #3995 from anders-swanson/oracle-private-zone-scope
...
OCI Provider private zone and workload identity support
2023-11-09 18:35:52 +01:00
Kubernetes Prow Robot
9751c803d9
Merge pull request #4019 from larivierec/feature/support-gw-api-1.0.0
...
add initial support for gw apis 1.0.0 GA
2023-11-09 13:39:24 +01:00
Christopher Larivière
6d78df4388
add initial support for gw apis 1.0.0 GA
...
Signed-off-by: Christopher Larivière <lariviere.c@gmail.com>
2023-11-06 09:32:31 -05:00
sesoldi
eae94cef62
Update docs/tutorials/azure.md
...
Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com>
2023-10-31 14:43:31 +01:00
sesoldi
bed99a9b96
Update azure.md
...
azure.json file for Workload Identity should also contain the tenantId, otherwise it failes to pass the credentials to the external-dns pod
2023-10-31 13:01:54 +01:00
Nandor Galambosi
d7b0dfd781
service source uses externalIPs in ExternalName type if available
2023-10-29 10:58:46 +01:00
Artyom Bakhtin
783e6999e6
Update Scaleway provider to support config files
...
Signed-off-by: Artyom Bakhtin <a@bakhtin.net>
2023-10-23 13:49:48 +01:00
Anders Swanson
4eb71536e1
OCI Provider private zone and workload identity support
2023-10-17 10:55:11 -07:00
fcd
5225be2899
fix case of userAssignedIdentityID field
...
Minor documentation fix to ensure that all references to the
`userAssignedIdentityID` field are correct.
2023-10-15 23:28:24 +01:00
Kundan Kumar
8cd595fef8
updated various broken link in ultradns tutorial
2023-10-12 13:46:07 +05:30
s.kharlamov
4794c01c6f
Allow multiple RFC2136 zones
2023-10-08 22:48:48 +00:00
Kubernetes Prow Robot
bc22050579
Merge pull request #3340 from gozer/issue/3339/last_reconcile_timestamp_seconds
...
Add external_dns_controller_last_reconcile_timestamp_seconds metric
2023-10-07 11:45:10 +02:00
fcd
6fd8637290
document there are four ways of configuring access
...
Documentation for granting permissions suggests there are three ways
configure the access but lists four, fix that to prevent any confusion.
Also some minor typo fixes.
2023-10-03 20:57:23 +01:00
John Gardiner Myers
76a2ea17aa
Make --ignore-hostname-annotation flag more consistent
2023-10-02 23:51:43 -07:00
Rich Siomporas
dcf9463bf6
Update pihole.md
...
Documented Pi-hole version, since the Pi-hole REST API is much newer than the last time I updated my Pi-hole's software. This will hopefully save frustration for other folks
2023-09-28 15:39:36 -04:00
John Gardiner Myers
4a32aaec01
Implement target annotation for more sources
2023-09-27 23:16:14 -07:00
John Gardiner Myers
859892fc72
Add --webhook-server flag for running as a webhook server ( #3957 )
...
* Add --webhook-server flag for running as a webhook server
* Address review comment
2023-09-27 07:40:09 -07:00
Kubernetes Prow Robot
f0b6260012
Merge pull request #3940 from johngmyers/node-filter
...
Support --label-filter for node source
2023-09-26 16:55:44 -07:00
Kubernetes Prow Robot
9ad15cf76f
Merge pull request #3938 from johngmyers/internal-service
...
Use ServiceIP for ClusterIP Services with internal-hostname annotation
2023-09-26 16:55:37 -07:00
Raffaele Di Fazio
8251b6dd85
Webhook provider ( #3063 )
...
* initial plugin implementation
* rename to webhook
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* json encoder changes
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* addressing review comments
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* changes according to ionos review
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* fix to accomodate changes in master
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* fixes to accomodate master changes
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* remove all propertyvaluesequals leftovers
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* readd negotiation to pass the domain filter around
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* fix domain filter passing
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* webhook fixes
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* fix tests
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* fix docs
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* docs fixes
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* code review comments on json unmarshal
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* handle error in adjustendpoints
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* fix a bunch of wrong require
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* tests and docs
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
* fix typo
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
---------
Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com>
2023-09-25 01:14:58 -07:00
John Gardiner Myers
75639b759c
Support --label-filter for node source
2023-09-20 08:56:26 -07:00
John Gardiner Myers
7044fdf040
Use ServiceIP for ClusterIP Services with internal-hostname annotation
2023-09-16 17:33:30 -07:00
John Gardiner Myers
6b230c6c44
Document the Gateway sources
2023-09-16 14:18:16 -07:00
Kubernetes Prow Robot
d54fa589c2
Merge pull request #3480 from Megum1n/gloo-multiple-namespaces
...
Add support for multiple gloo namespaces in one External DNS instance
2023-09-15 22:10:13 -07:00
Kubernetes Prow Robot
fa332e9ed3
Merge pull request #3913 from johngmyers/doc-service
...
Document the Service source
2023-09-15 14:10:14 -07:00
Kubernetes Prow Robot
65db0c73ec
Merge pull request #3452 from BadLiveware/feature/allow-target-annotation-gateway
...
Allow annotation target override on gateway
2023-09-14 22:08:12 -07:00
Michel Loiseleur
d68fd0217b
feat: upgrade ExternalDNS to go 1.21
2023-09-08 10:57:23 +02:00
John Gardiner Myers
77fe3a23c8
Switch from bulleted to numbered lists
2023-09-06 17:47:26 -07:00
John Gardiner Myers
47828f196e
Apply suggestions from code review
...
Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com>
2023-09-06 17:16:23 -07:00
Kubernetes Prow Robot
add5e92860
Merge pull request #3906 from weisdd/feature/azure-workload-identity-azidentity
...
feat(azure): add support for workload identity using azidentity
2023-09-04 12:33:49 -07:00
John Gardiner Myers
da3fe0463c
Document the Service source
2023-09-04 11:44:08 -07:00
Kubernetes Prow Robot
6a53959385
Merge pull request #3806 from johngmyers/doc-sources
...
Document the Ingress source
2023-09-04 01:03:48 -07:00
Igor Beliakov
a1c2775d45
feat(azure): add support for workload identity
...
Signed-off-by: Igor Beliakov <demtis.register@gmail.com>
2023-09-01 19:08:42 +02:00
Kubernetes Prow Robot
5426005874
Merge pull request #3835 from johngmyers/ko
...
Build image with ko
2023-08-26 07:23:22 -07:00
Kubernetes Prow Robot
24b40383cb
Merge pull request #3869 from matusf/fix/pdns-conform-with-other-providers
...
fix!: align PDNS provider by removing MatchParent
2023-08-23 12:50:16 -07:00
Kubernetes Prow Robot
f367622dbc
Merge pull request #3842 from pendo-io/istio-ingress-resource
...
feat: add support for ingress backed istio gateways
2023-08-23 12:50:08 -07:00
Predrag Janosevic
7ddc9daba7
exoscale provider: migrate to exoscale API v2 ( #2917 )
...
* exoscale provider: migrate to exoscale API v2
* exoscale: fix comment typo
* exoscale: remove debug line from test
* exoscale: replace endpoint config with environment
* exoscale: update Config
* Update pkg/apis/externaldns/types.go
Co-authored-by: John Gardiner Myers <jgmyers@proofpoint.com>
* exoscale: document api zone & environment flags
* exoscale: update tutorial
* Sync deps with master
---------
Co-authored-by: John Gardiner Myers <jgmyers@proofpoint.com>
2023-08-14 07:57:21 -07:00
Matúš Ferech
2e00d428f2
Add docs for regex domain filter
2023-08-14 11:14:43 +02:00
Kubernetes Prow Robot
13d09b25d5
Merge pull request #3026 from rbeuque74/ovhcloud-cache
...
feat(ovh): add cache based on DNS zone SOA value
2023-08-12 13:41:18 -07:00
John Gardiner Myers
ef8b223b8e
Migrate metadata from TXT to DynamoDB registries
2023-08-11 12:16:36 -07:00
John Gardiner Myers
07b1f81c14
Build image with ko
2023-08-10 07:45:45 -07:00
Anthony Corbacho
d5e97fa8a2
Update docs/tutorials/traefik-proxy.md
...
Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com>
2023-08-10 16:41:32 +09:00
Anthony Corbacho
b7973ebb4c
doc: Add example of setting up traefik IngressRoute with externalDNS annotations
2023-08-10 16:15:37 +09:00
David Pait
362b233833
update istio gateway annotation name and docs
2023-08-08 08:04:51 -04:00
David Pait
1253afa11e
add supoort for ingress backed istio gateways
2023-08-06 16:57:42 -04:00
John Gardiner Myers
0eb91e358d
Document the Ingress source
2023-08-04 04:06:02 -07:00
Romain Beuque
1a48cb8e16
feat(ovh): add cache based on DNS zone SOA value
...
OVHcloud customers using 'ovh' provider for large DNS zone will spend a
lot of time waiting for all records to be retrieved from the API. As
records can't change without a modification of the SOA Serial of the DNS
zone, this commit adds a client-side cache that stores the value of the
DNS records for each zone, based of the current SOA Serial value of the
zone. In case the SOA Serial of the zone is identical to the one in
cache, we can serve all the records directly from cache. Otherwise,
fallback on refreshing the cache from the API.
Signed-off-by: Romain Beuque <556072+rbeuque74@users.noreply.github.com>
2023-07-17 10:14:01 +00:00
Samuel Liu
48fe50c39e
fix both the docs site and the README on github
2023-07-17 14:05:58 +08:00
Megum1n
70a43a4231
Merge branch 'master' into gloo-multiple-namespaces
2023-07-08 22:49:13 +02:00
Fredrik Larsson
bd568e9ba9
Add docs for annotation support on Gateway
2023-07-05 09:54:24 +02:00
John Gardiner Myers
4a40346d42
Remove flags and documentation for removed contour-ingressroute source
2023-07-04 16:37:37 -07:00
Kubernetes Prow Robot
d25ba9f37c
Merge pull request #3282 from gugdewescale/fix-scaleway-documentation
...
fix: scaleway documentation, remove SCW_DEFAULT_ORGANIZATION_ID
2023-06-28 03:30:32 -07:00
Kubernetes Prow Robot
aa347685f8
Merge pull request #3687 from alejandrojnm/master
...
Fix bug in the civo provider to avoid infinite record creation
2023-06-26 03:03:44 -07:00
Kubernetes Prow Robot
3fd118b1d4
Merge pull request #3729 from johngmyers/annotation
...
Document annotations
2023-06-26 02:43:44 -07:00
Kubernetes Prow Robot
974ad3976f
Merge pull request #3723 from jalaziz/patch-1
...
Update aws IAM policy example
2023-06-26 00:01:09 -07:00
Alejandro J. Nuñez Madrazo
27f9f5286c
Merge branch 'master' into master
2023-06-26 07:03:30 +01:00
John Gardiner Myers
7c36154341
Document annotations
2023-06-25 16:58:48 -07:00
Megum1n
c5af401026
Update gloo docs
2023-06-25 06:12:50 +02:00
Megum1n
845b53cfa1
Update docs/tutorials/gloo-proxy.md
...
Co-authored-by: John Gardiner Myers <jgmyers@proofpoint.com>
2023-06-25 03:29:11 +02:00
Megum1n
41d3de5364
Merge branch 'master' into gloo-multiple-namespaces
2023-06-24 02:11:35 +02:00
Jameel Al-Aziz
2df31d410b
Update aws IAM policy example
...
Update the IAM policy example to include `route53:ListTagsForResource` permissions.
This is required for `--aws-zone-tags`.
2023-06-23 01:48:20 -07:00
John Gardiner Myers
1a4c7b5f3c
Support DynamoDB tables in other regions
2023-06-18 16:50:02 -07:00
John Gardiner Myers
5aae0af68a
Add DynamoDB registry implementation
2023-06-18 16:49:58 -07:00
Kubernetes Prow Robot
8e2140baab
Merge pull request #3055 from ThomasK33/master
...
Add support for Traefik 2's IngressRoute, IngressRouteTCP and IngressRouteUDP
2023-06-16 13:08:19 -07:00
Thomas Kosiewski
97deda58ef
Updated traefik docs to use registry.k8s.io
...
Signed-off-by: Thomas Kosiewski <thoma471@googlemail.com>
2023-06-15 10:50:30 +02:00
Thomas Kosiewski
88a726f690
Update docs/tutorials/traefik-proxy.md
...
Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com>
2023-06-15 09:04:52 +02:00
Alejandro J. Nuñez Madrazo
3056ac57d6
Fix bug in the civo provider to avoid infinite record creation
...
Signed-off-by: Alejandro J. Nuñez Madrazo <alejandro@civo.com>
2023-06-14 23:42:40 +01:00
Kubernetes Prow Robot
3dfec6b30d
Merge pull request #3652 from johngmyers/registry-doc
...
Improve registry documentation
2023-06-12 11:01:58 -07:00
Kubernetes Prow Robot
e62d2f3ac5
Merge pull request #3673 from mloiseleur/golang-1.20
...
Upgrade ExternalDNS to go 1.20
2023-06-12 07:51:48 -07:00
Kubernetes Prow Robot
a2ff741695
Merge pull request #3594 from dmealo/patch-1
...
Very minor typo Update to azure.md
2023-06-11 10:45:47 -07:00