A sample setup of PowerDNS with MariaDB Galera backend on minikube k8s cluster
This repository contains a working configuration for PowerDNS setup on Kubernetes with Mysql backend.
MariaDB galera cluster is used as backend.
We use severalnines setup of MariaDB Galera cluster:
https://github.com/severalnines/galera-docker-mariadb/tree/master/example-kubernetes
Only Development Version:
This installation is Tested only on a minikube cluster.
So, it can only be used in development environment.
It requires following steps (not exhaustive) to reach a production state:
Tools Installed and Access:
PowerDNS
: A deployment for PowerDNS service (API disabled). Served on <minikube_node_ip>:30053
PowerDNS API
: A deployment for PowerDNS API service. Served on pdns-api.minikube:80
PowerDNS Admin
: A deployment for PowerDNS Admin GUI. Served on pdns-admin.minikube:80
Nginx Ingress
: Ingress controller to expose the PowerDNS API and PowerDNS Admin on httpMariadb 10.1 Galera
: A MariaDB galera cluster from severalninesDirectory structure:
nginx-ingress-controller
: Contains k8s configuration files for nginx-ingress-controllerpdns/galera
: Contains configuration files to setup a Galera clusterpdns
: Contains configuration files to setup PDNS server, PDNS API server and PDNS-Admin serverInstallation Steps:
/etc/hosts
entry to <minikube_node_ip
> for following domains:pdns.minikube
pdns-api.minikube
pdns-admin.minikube
kubectl apply -f nginx-ingress-controller/
kubectl apply -f pdns/pdns_nginx_ingress.yaml
kubectl apply -f pdns/galera/galera_namespace.yaml
kubectl apply -f pdns/galera/galera_etcd.yaml
pdns/galera/galera_mariadb.yaml
kubectl apply -f pdns/galera/galera_mariadb.yaml
pdns/galera/galera_mariadb.yaml
kubectl apply -f pdns/galera/galera_mariadb.yaml
kubectl create configmap pdns-conf --from-file=pdns.conf=pdns.conf
kubectl apply -f pdns/pdns_deployment.yaml
ssh -i ~/.minikube/machines/minikube/id_rsa -NfL 5000:<galera_db_service_ip>:3306 docker@<minikube_node_ip>
mysql -h 127.0.0.1 -P 5000 -u pdns -p pdns < pdns/pdns_schema.sql
pdns.minikube
pdns.minikube:30053
kubectl create configmap pdns-api-conf --from-file=pdns-api.conf=pdns-api.conf
kubectl apply -f pdns/pdns_api_deployment.yaml
pdns-api.minikube:80
powerdns_admin
and provide all privileges to “pdns” userkubectl create configmap pdns-admin-conf --from-file=config.py=pdns_admin_config.py
kubectl apply -f pdns/pdns_admin_deployment.yaml
pdns-admin.minikube:80