External DNS, powered by PowerDNS, installed via Helm
kubectl apply -f external-dns-namespace.yaml
to create anexternal-dns
namespace (you can use another namespace & adjust -n below)- Install "persistent" resources:
cd persist
helm install edp-persist . -n external-dns
cd ..
- Install powerdns resources:
cd powerdns
helm install edp-pdns . -n external-dns
cd ..
- Install ext resources:
cd ext
helm install edp-ext -n external-dns
cd ..