mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-06 09:36:58 +02:00
set default to 50 plus add docs
This commit is contained in:
parent
51fd8a91d3
commit
0d0da6df5f
@ -189,3 +189,13 @@ Now that we have verified that ExternalDNS will automatically manage DigitalOcea
|
||||
$ kubectl delete service -f nginx.yaml
|
||||
$ kubectl delete service -f externaldns.yaml
|
||||
```
|
||||
|
||||
## Advanced Usage
|
||||
|
||||
### API Page Size
|
||||
|
||||
If you have a large number of domains and/or records within a domain, you may encounter API
|
||||
rate limiting because of the number of API calls that external-dns must make to the DigitalOcean API to retrieve
|
||||
the current DNS configuration during every reconciliation loop. If this is the case, use the
|
||||
`--digitalocean-api-page-size` option to increase the size of the pages used when querying the DigitalOcean API.
|
||||
(Note: external-dns uses a default of 50.)
|
||||
|
@ -238,7 +238,7 @@ var defaultConfig = &Config{
|
||||
NS1IgnoreSSL: false,
|
||||
TransIPAccountName: "",
|
||||
TransIPPrivateKeyFile: "",
|
||||
DigitalOceanAPIPageSize: 200,
|
||||
DigitalOceanAPIPageSize: 50,
|
||||
}
|
||||
|
||||
// NewConfig returns new Config object
|
||||
|
Loading…
Reference in New Issue
Block a user