DNS¶
b'nerd Cloud provides authoritative DNS hosting powered by PowerDNS. You can manage zones and records via the API, CLI, Terraform provider, or Dashboard. The service is compatible with external-dns for automatic Kubernetes ingress record management.
Resources¶
| Resource | Description |
|---|---|
| Zones | Create and manage DNS zones (e.g. example.com) |
| Records | Add A, AAAA, CNAME, MX, TXT, and other record types |
| Domain Verification | Verify domain ownership before using a domain with platform services |
Quick reference¶
# List zones
bnerd dns zones list
# Create a zone
bnerd dns zones create example.com
# Add an A record
bnerd dns records create --zone example.com --name www --type A --value 203.0.113.10
For the full DNS setup walkthrough, see the Manage DNS guide.