2022-08-16 09:40:54 +00:00
|
|
|
Before applying replace the secret with the actual one.
|
|
|
|
|
|
|
|
For debugging add `- --log-level=debug`:
|
|
|
|
|
|
|
|
```
|
2022-12-14 16:46:00 +00:00
|
|
|
wget https://raw.githubusercontent.com/kubernetes-sigs/external-dns/master/docs/contributing/crd-source/crd-manifest.yaml -O crd.yml
|
|
|
|
kubectl apply -n external-dns -f application.yml -f crd.yml
|
2022-08-16 09:40:54 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Insert TSIG secret:
|
|
|
|
|
|
|
|
```
|
|
|
|
kubectl -n external-dns create secret generic tsig-secret \
|
|
|
|
--from-literal=TSIG_SECRET=<secret>
|
|
|
|
```
|