1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Updated doc for unsafe thresholds

This commit is contained in:
root
2020-12-12 08:09:19 +00:00
parent 2143ccf80b
commit 75e75a8846

View File

@@ -120,3 +120,18 @@ If you'd like to enable lenience for a whole zone you can do so with the followi
targets:
- ns1
```
#### Restrict Record manipulations
OctoDNS currently provides us the ability to limit the frequency of update/deletes on
DNS records by allowing us to configure a percentage of the allowed operations as a
threshold parameter. If left unconfigured, suitable defaults take over instead.
In the below example, the Dynamic provider configured accomodates only 40% of both
update and delete operations over all the records present.
````yaml
dyn:
class: octodns.provider.dyn.DynProvider
update_pcent_threshold: 0.4
delete_pcent_threshold: 0.4
````