Update external-dns

This commit is contained in:
Lauri Võsandi 2022-12-14 18:46:00 +02:00
parent 76cfcd083b
commit c65835c6a4
2 changed files with 17 additions and 3 deletions

View File

@ -2,9 +2,9 @@ Before applying replace the secret with the actual one.
For debugging add `- --log-level=debug`: For debugging add `- --log-level=debug`:
``` ```
kubectl apply -n external-dns -f external-dns.yml 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
``` ```
Insert TSIG secret: Insert TSIG secret:

View File

@ -24,6 +24,20 @@ rules:
- get - get
- list - list
- watch - watch
- apiGroups:
- externaldns.k8s.io
resources:
- dnsendpoints
verbs:
- get
- watch
- list
- apiGroups:
- externaldns.k8s.io
resources:
- dnsendpoints/status
verbs:
- update
--- ---
apiVersion: v1 apiVersion: v1
kind: ServiceAccount kind: ServiceAccount
@ -63,7 +77,7 @@ spec:
serviceAccountName: external-dns serviceAccountName: external-dns
containers: containers:
- name: external-dns - name: external-dns
image: k8s.gcr.io/external-dns/external-dns:v0.10.2 image: k8s.gcr.io/external-dns/external-dns:v0.13.1
envFrom: envFrom:
- secretRef: - secretRef:
name: tsig-secret name: tsig-secret