{"id":34176611,"url":"https://github.com/bind-dns/binddns-operator","last_synced_at":"2026-03-09T23:34:41.166Z","repository":{"id":61627802,"uuid":"319859079","full_name":"bind-dns/binddns-operator","owner":"bind-dns","description":"BindDns Operator creates/configures/manages bind9 dns atop Kubernetes. Bind dns for Kubernetes","archived":false,"fork":false,"pushed_at":"2021-01-26T10:09:22.000Z","size":15166,"stargazers_count":23,"open_issues_count":2,"forks_count":5,"subscribers_count":4,"default_branch":"main","last_synced_at":"2024-11-25T13:15:04.620Z","etag":null,"topics":["bind9","dns","kubernetes","operator"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bind-dns.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-12-09T06:06:12.000Z","updated_at":"2024-04-04T18:58:03.000Z","dependencies_parsed_at":"2022-10-19T19:00:20.427Z","dependency_job_id":null,"html_url":"https://github.com/bind-dns/binddns-operator","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/bind-dns/binddns-operator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bind-dns%2Fbinddns-operator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bind-dns%2Fbinddns-operator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bind-dns%2Fbinddns-operator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bind-dns%2Fbinddns-operator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bind-dns","download_url":"https://codeload.github.com/bind-dns/binddns-operator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bind-dns%2Fbinddns-operator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30316772,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T20:05:46.299Z","status":"ssl_error","status_checked_at":"2026-03-09T19:57:04.425Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bind9","dns","kubernetes","operator"],"created_at":"2025-12-15T12:43:17.470Z","updated_at":"2026-03-09T23:34:41.154Z","avatar_url":"https://github.com/bind-dns.png","language":"Go","readme":"# binddns-operator\n\nYou can simply manages your DNS records with binddns-operator.\n\nDnsDomain/DnsRule is the CRD of Kubernetes. Users can use them to change DNS records.\n\n![show](docs/summary.gif)\n\n## The Example\n\n```\n[root@localhost ~]# kubectl get dnsdomain\nNAME             ENABLED   REMARK   UPDATE                \nhelloworld.com   true               2021-01-21 01:44:05\ntest.com         true               2021-01-20 21:38:09\n\n[root@localhost ~]# kubectl get dnsrule\nNAME                      ZONE             ENABLED   HOST   TYPE   DATA          TTL   MXPRIORITY\nhelloworld.com-b3378a6c   helloworld.com   true      www    A      1.1.1.1       10    0\ntest.com-8b223ed7         test.com         true      www    A      10.10.10.10   10    0\n\n[root@localhost ~]# nslookup www.test.com 127.0.0.1\nServer:\t\t127.0.0.1\nAddress:\t127.0.0.1#53\n\nName:\twww.test.com\nAddress: 10.10.10.10\n```\n\n## How To Deploy\n\nWe need to deploy Controller and Webhook\n\n### Deploy Controller\n\n```\n[root@localhost binddns-operator]# cd deploy/controller/\n\n# Deploy DnsDomain CRD\n[root@localhost controller]# kubectl apply -f crd_dnsdomains.yaml\n\n# Deploy DnsRule CRD\n[root@localhost controller]# kubectl apply -f crd_dnsrules.yaml\n\n# Deploy RBAC\n[root@localhost controller]# kubectl apply -f rbac.yaml\n\n# Deploy ConfigMap\n[root@localhost controller]# kubectl apply -f configmap.yaml\n\n# Deploy Controller Deployment\n[root@localhost controller]# kubectl apply -f deployment.yaml\n\n```\n\n### Deploy Webhook\n\n```\n[root@localhost binddns-operator]# cd deploy/webhook/\n\n# Generate Secret\n[root@localhost webhook]# ./webhook-create-signed-cert.sh --service binddns-webhook-svc --secret binddns-webhook-certs --namespace kube-system\n\n# Generate Deployment\n[root@localhost webhook]# cat mutatingwebhook.yaml | ./webhook-patch-ca-bundle.sh \u003e mutatingwebhook-ca-bundle.yaml\n\n\n# Deploy\n[root@localhost webhook]# kubectl apply -f mutatingwebhook-ca-bundle.yaml\n[root@localhost webhook]# kubectl apply -f service.yaml\n[root@localhost webhook]# kubectl apply -f deployment.yaml\n```\n\n## Usage\n\n- WebUI: [http://${IP}:5388/console/domains](http://${IP}:5388/console/domains)\n\n- CRD: There is a demo at [deploy/demo/example.yaml](deploy/demo/example.yaml)\n\n\n## Future\n\n- The better WebUI \n- Dynamic rndc key\n- Synchronous DnsDomain status\n- ...\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbind-dns%2Fbinddns-operator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbind-dns%2Fbinddns-operator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbind-dns%2Fbinddns-operator/lists"}