mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-06 09:36:58 +02:00
* chore(docs): add mkdocs-macros plugin * chore(docs): add mkdocs-macros plugin Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com> * chore(docs): add mkdocs-macros plugin Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com> --------- Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com> Co-authored-by: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com>
31 lines
876 B
YAML
31 lines
876 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: external-dns
|
|
spec:
|
|
strategy:
|
|
type: Recreate
|
|
selector:
|
|
matchLabels:
|
|
app: external-dns
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: external-dns
|
|
spec:
|
|
# Only use if you're also using RBAC
|
|
# serviceAccountName: external-dns
|
|
containers:
|
|
- name: external-dns
|
|
image: registry.k8s.io/external-dns/external-dns:v0.17.0
|
|
args:
|
|
- --source=ingress # or service or both
|
|
- --provider=exoscale
|
|
- --domain-filter={{ my-domain }}
|
|
- --policy=sync # if you want DNS entries to get deleted as well
|
|
- --txt-owner-id={{ owner-id-for-this-external-dns }}
|
|
- --exoscale-apikey={{ api-key}}
|
|
- --exoscale-apisecret={{ api-secret }}
|
|
# - --exoscale-apizone={{ api-zone }}
|
|
# - --exoscale-apienv={{ api-env }}
|