├── .dockerignore ├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── ci.yml │ ├── docs.yaml │ └── release.yml ├── .gitignore ├── .golangci.yml ├── CONTRIBUTING.md ├── DEV_SETUP.md ├── Dockerfile ├── LICENSE ├── Makefile ├── NOTICE ├── PROJECT ├── README.md ├── api ├── v1alpha1 │ ├── groupversion_info.go │ ├── rrset_types.go │ ├── zone_types.go │ └── zz_generated.deepcopy.go └── v1alpha2 │ ├── clusterrrset_types.go │ ├── clusterzone_types.go │ ├── generic_rrset.go │ ├── generic_zone.go │ ├── groupversion_info.go │ ├── rrset_types.go │ ├── zone_types.go │ └── zz_generated.deepcopy.go ├── changelog.json ├── cmd └── main.go ├── config ├── crd │ ├── bases │ │ ├── dns.cav.enablers.ob_clusterrrsets.yaml │ │ ├── dns.cav.enablers.ob_clusterzones.yaml │ │ ├── dns.cav.enablers.ob_rrsets.yaml │ │ └── dns.cav.enablers.ob_zones.yaml │ ├── kustomization.yaml │ └── kustomizeconfig.yaml ├── default │ ├── kustomization.yaml │ ├── manager_config_patch.yaml │ ├── manager_env_patch.yaml │ └── manager_metrics_patch.yaml ├── manager │ ├── kustomization.yaml │ └── manager.yaml ├── prometheus │ ├── kustomization.yaml │ └── monitor.yaml ├── rbac │ ├── clusterrrset_editor_role.yaml │ ├── clusterrrset_viewer_role.yaml │ ├── clusterzone_editor_role.yaml │ ├── clusterzone_viewer_role.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── metrics_service.yaml │ ├── role.yaml │ ├── role_binding.yaml │ ├── rrset_editor_role.yaml │ ├── rrset_viewer_role.yaml │ ├── service_account.yaml │ ├── zone_editor_role.yaml │ └── zone_viewer_role.yaml └── samples │ ├── dns_v1alpha2_clusterrrset.yaml │ ├── dns_v1alpha2_clusterzone.yaml │ ├── dns_v1alpha2_rrset.yaml │ ├── dns_v1alpha2_zone.yaml │ └── kustomization.yaml ├── docs ├── assets │ ├── architecture.graphml │ ├── architecture.png │ ├── diagrams-high-level-simple.png │ ├── example.graphml │ ├── example.png │ ├── favicon.png │ └── high-level.graphml ├── guides │ ├── clusterrrsets.md │ ├── clusterzones.md │ ├── metrics.md │ ├── rrsets.md │ ├── warnings.md │ └── zones.md ├── index.md ├── introduction │ ├── faq.md │ ├── getting-started.md │ ├── overview.md │ └── stability-support.md ├── snippets │ ├── clusterrrsets-example.org.yaml │ ├── clusterzone-example.org.yaml │ ├── rrset-cname.yaml │ ├── rrset-mx.yaml │ ├── rrset-ptr.yaml │ ├── rrset-srv.yaml │ ├── rrset-txt.yaml │ ├── rrsets-myapp1.example.org.yaml │ └── zone-myapp1.example.org.yaml └── testing_environment │ ├── k3d.md │ └── powerdns.md ├── go.mod ├── go.sum ├── hack └── boilerplate.go.txt ├── internal └── controller │ ├── clusterrrset_controller.go │ ├── clusterrrset_controller_test.go │ ├── clusterzone_controller.go │ ├── clusterzone_controller_test.go │ ├── common.go │ ├── common_test.go │ ├── pdns_helper.go │ ├── pdns_helper_test.go │ ├── pdns_metrics.go │ ├── rrset_controller.go │ ├── rrset_controller_test.go │ ├── suite_test.go │ ├── zone_controller.go │ └── zone_controller_test.go ├── mkdocs.yml └── test ├── e2e ├── e2e_suite_test.go └── e2e_test.go └── utils └── utils.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEV_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/DEV_SETUP.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/NOTICE -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/README.md -------------------------------------------------------------------------------- /api/v1alpha1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/api/v1alpha1/groupversion_info.go -------------------------------------------------------------------------------- /api/v1alpha1/rrset_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/api/v1alpha1/rrset_types.go -------------------------------------------------------------------------------- /api/v1alpha1/zone_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/api/v1alpha1/zone_types.go -------------------------------------------------------------------------------- /api/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/api/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /api/v1alpha2/clusterrrset_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/api/v1alpha2/clusterrrset_types.go -------------------------------------------------------------------------------- /api/v1alpha2/clusterzone_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/api/v1alpha2/clusterzone_types.go -------------------------------------------------------------------------------- /api/v1alpha2/generic_rrset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/api/v1alpha2/generic_rrset.go -------------------------------------------------------------------------------- /api/v1alpha2/generic_zone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/api/v1alpha2/generic_zone.go -------------------------------------------------------------------------------- /api/v1alpha2/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/api/v1alpha2/groupversion_info.go -------------------------------------------------------------------------------- /api/v1alpha2/rrset_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/api/v1alpha2/rrset_types.go -------------------------------------------------------------------------------- /api/v1alpha2/zone_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/api/v1alpha2/zone_types.go -------------------------------------------------------------------------------- /api/v1alpha2/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/api/v1alpha2/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /changelog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/changelog.json -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/cmd/main.go -------------------------------------------------------------------------------- /config/crd/bases/dns.cav.enablers.ob_clusterrrsets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/crd/bases/dns.cav.enablers.ob_clusterrrsets.yaml -------------------------------------------------------------------------------- /config/crd/bases/dns.cav.enablers.ob_clusterzones.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/crd/bases/dns.cav.enablers.ob_clusterzones.yaml -------------------------------------------------------------------------------- /config/crd/bases/dns.cav.enablers.ob_rrsets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/crd/bases/dns.cav.enablers.ob_rrsets.yaml -------------------------------------------------------------------------------- /config/crd/bases/dns.cav.enablers.ob_zones.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/crd/bases/dns.cav.enablers.ob_zones.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/manager_config_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/default/manager_config_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_env_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/default/manager_env_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_metrics_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/default/manager_metrics_patch.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - manager.yaml 3 | -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/clusterrrset_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/rbac/clusterrrset_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/clusterrrset_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/rbac/clusterrrset_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/clusterzone_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/rbac/clusterzone_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/clusterzone_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/rbac/clusterzone_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/metrics_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/rbac/metrics_service.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/rrset_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/rbac/rrset_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/rrset_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/rbac/rrset_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /config/rbac/zone_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/rbac/zone_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/zone_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/rbac/zone_viewer_role.yaml -------------------------------------------------------------------------------- /config/samples/dns_v1alpha2_clusterrrset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/samples/dns_v1alpha2_clusterrrset.yaml -------------------------------------------------------------------------------- /config/samples/dns_v1alpha2_clusterzone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/samples/dns_v1alpha2_clusterzone.yaml -------------------------------------------------------------------------------- /config/samples/dns_v1alpha2_rrset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/samples/dns_v1alpha2_rrset.yaml -------------------------------------------------------------------------------- /config/samples/dns_v1alpha2_zone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/samples/dns_v1alpha2_zone.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /docs/assets/architecture.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/assets/architecture.graphml -------------------------------------------------------------------------------- /docs/assets/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/assets/architecture.png -------------------------------------------------------------------------------- /docs/assets/diagrams-high-level-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/assets/diagrams-high-level-simple.png -------------------------------------------------------------------------------- /docs/assets/example.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/assets/example.graphml -------------------------------------------------------------------------------- /docs/assets/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/assets/example.png -------------------------------------------------------------------------------- /docs/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/assets/favicon.png -------------------------------------------------------------------------------- /docs/assets/high-level.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/assets/high-level.graphml -------------------------------------------------------------------------------- /docs/guides/clusterrrsets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/guides/clusterrrsets.md -------------------------------------------------------------------------------- /docs/guides/clusterzones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/guides/clusterzones.md -------------------------------------------------------------------------------- /docs/guides/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/guides/metrics.md -------------------------------------------------------------------------------- /docs/guides/rrsets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/guides/rrsets.md -------------------------------------------------------------------------------- /docs/guides/warnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/guides/warnings.md -------------------------------------------------------------------------------- /docs/guides/zones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/guides/zones.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/introduction/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/introduction/faq.md -------------------------------------------------------------------------------- /docs/introduction/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/introduction/getting-started.md -------------------------------------------------------------------------------- /docs/introduction/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/introduction/overview.md -------------------------------------------------------------------------------- /docs/introduction/stability-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/introduction/stability-support.md -------------------------------------------------------------------------------- /docs/snippets/clusterrrsets-example.org.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/snippets/clusterrrsets-example.org.yaml -------------------------------------------------------------------------------- /docs/snippets/clusterzone-example.org.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/snippets/clusterzone-example.org.yaml -------------------------------------------------------------------------------- /docs/snippets/rrset-cname.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/snippets/rrset-cname.yaml -------------------------------------------------------------------------------- /docs/snippets/rrset-mx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/snippets/rrset-mx.yaml -------------------------------------------------------------------------------- /docs/snippets/rrset-ptr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/snippets/rrset-ptr.yaml -------------------------------------------------------------------------------- /docs/snippets/rrset-srv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/snippets/rrset-srv.yaml -------------------------------------------------------------------------------- /docs/snippets/rrset-txt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/snippets/rrset-txt.yaml -------------------------------------------------------------------------------- /docs/snippets/rrsets-myapp1.example.org.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/snippets/rrsets-myapp1.example.org.yaml -------------------------------------------------------------------------------- /docs/snippets/zone-myapp1.example.org.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/snippets/zone-myapp1.example.org.yaml -------------------------------------------------------------------------------- /docs/testing_environment/k3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/testing_environment/k3d.md -------------------------------------------------------------------------------- /docs/testing_environment/powerdns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/docs/testing_environment/powerdns.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /internal/controller/clusterrrset_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/internal/controller/clusterrrset_controller.go -------------------------------------------------------------------------------- /internal/controller/clusterrrset_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/internal/controller/clusterrrset_controller_test.go -------------------------------------------------------------------------------- /internal/controller/clusterzone_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/internal/controller/clusterzone_controller.go -------------------------------------------------------------------------------- /internal/controller/clusterzone_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/internal/controller/clusterzone_controller_test.go -------------------------------------------------------------------------------- /internal/controller/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/internal/controller/common.go -------------------------------------------------------------------------------- /internal/controller/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/internal/controller/common_test.go -------------------------------------------------------------------------------- /internal/controller/pdns_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/internal/controller/pdns_helper.go -------------------------------------------------------------------------------- /internal/controller/pdns_helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/internal/controller/pdns_helper_test.go -------------------------------------------------------------------------------- /internal/controller/pdns_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/internal/controller/pdns_metrics.go -------------------------------------------------------------------------------- /internal/controller/rrset_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/internal/controller/rrset_controller.go -------------------------------------------------------------------------------- /internal/controller/rrset_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/internal/controller/rrset_controller_test.go -------------------------------------------------------------------------------- /internal/controller/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/internal/controller/suite_test.go -------------------------------------------------------------------------------- /internal/controller/zone_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/internal/controller/zone_controller.go -------------------------------------------------------------------------------- /internal/controller/zone_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/internal/controller/zone_controller_test.go -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /test/e2e/e2e_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/test/e2e/e2e_suite_test.go -------------------------------------------------------------------------------- /test/e2e/e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/test/e2e/e2e_test.go -------------------------------------------------------------------------------- /test/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerdns-operator/PowerDNS-Operator/HEAD/test/utils/utils.go --------------------------------------------------------------------------------