Skip to content

Latest commit

 

History

History

dns

DNS records, managed by OctoDNS

Note

Came here for managing your project subdomain's DNS records on lorebooks.wiki? You might prefer to file a issue on the meta issue tracker instead unless you want to submit your DNS records for your documentation or wiki.

We manage our Cloudflare DNS records as code for all of our domains through OctoDNS and manually ran by a human to ensure nothing go wrong.

For the main configuration itself, see the ../octodns-config.yml file.

Cookbooks for squad members

For the .env.keys file, ask @ajhalili2006 by providing your GPG pubkey ID in order to decrypt via GPG. Please be reminded that you must notify anyone before you apply DNS changes.

  • Export DNS records into YAML: pipenv run dns-export (may lose YAML comments)
  • Load secrets into a fresh session dotenvx run -f .env.ci -- pipenv shell
  • Dry run: dotenvx run -f .env.ci -- pipenv run dns-dryrun
  • Apply: dotenvx run -f .env.ci -- pipenv run dns-apply

Got octodns.provider.plan.TooMuchChange error/warning?

Warning

Before you force apply DNS changes, you must know what you are doing, alongside any DNS-related changes you are doing.

In case you need to roll back:

git reset --hard HEAD # or git stash if you need to save stuff
dotenvx run -f .env.ci -- pipenv run dns-apply --force

To prevent surprises in production domains, changes above 25% of DNS records will be blocked from running the dns-apply pipenv script without doing a bypass flag.

To bypass it, add --force after the apply command above to force apply changes to DNS zone. Be warned that if you force it at the wrong time, things could go wrong.