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

Document max_workers flag

This commit is contained in:
Dan Hanks
2019-12-19 10:33:22 -05:00
parent 31d9041811
commit ed482c60ca

View File

@@ -51,6 +51,9 @@ We start by creating a config file to tell OctoDNS about our providers and the z
```yaml ```yaml
--- ---
manager:
max_workers: 2
providers: providers:
config: config:
class: octodns.provider.yaml.YamlProvider class: octodns.provider.yaml.YamlProvider
@@ -80,6 +83,8 @@ zones:
Further information can be found in the `docstring` of each source and provider class. Further information can be found in the `docstring` of each source and provider class.
The `max_workers` key in the `manager` section of the config enables threading to parallelize the planning portion of the sync.
Now that we have something to tell OctoDNS about our providers & zones we need to tell it about or records. We'll keep it simple for now and just create a single `A` record at the top-level of the domain. Now that we have something to tell OctoDNS about our providers & zones we need to tell it about or records. We'll keep it simple for now and just create a single `A` record at the top-level of the domain.
`config/example.com.yaml` `config/example.com.yaml`