80 lines
1.8 KiB
YAML
80 lines
1.8 KiB
YAML
---
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: external-dns
|
|
namespace: futureporn
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: ClusterRole
|
|
metadata:
|
|
name: external-dns
|
|
rules:
|
|
- apiGroups: [""]
|
|
resources: ["services","endpoints","pods"]
|
|
verbs: ["get","watch","list"]
|
|
- apiGroups: ["extensions","networking.k8s.io"]
|
|
resources: ["ingresses"]
|
|
verbs: ["get","watch","list"]
|
|
- apiGroups: [""]
|
|
resources: ["nodes"]
|
|
verbs: ["list"]
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: ClusterRoleBinding
|
|
metadata:
|
|
name: external-dns-viewer
|
|
roleRef:
|
|
apiGroup: rbac.authorization.k8s.io
|
|
kind: ClusterRole
|
|
name: external-dns
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: external-dns
|
|
namespace: futureporn
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: external-dns
|
|
namespace: futureporn
|
|
spec:
|
|
strategy:
|
|
type: Recreate
|
|
selector:
|
|
matchLabels:
|
|
app: external-dns
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: external-dns
|
|
spec:
|
|
serviceAccountName: external-dns
|
|
containers:
|
|
- name: external-dns
|
|
resources:
|
|
limits:
|
|
memory: "1024Mi"
|
|
cpu: "100m"
|
|
image: registry.k8s.io/external-dns/external-dns:v0.14.1
|
|
args:
|
|
- --source=service
|
|
- --source=ingress
|
|
- --provider=exoscale
|
|
- --domain-filter=sbtp.xyz
|
|
- --policy=sync # if you want DNS entries to get deleted as well
|
|
- --txt-owner-id=futureporn
|
|
- --exoscale-apizone=de-fra-1
|
|
- --exoscale-apienv=api
|
|
env:
|
|
- name: EXTERNAL_DNS_EXOSCALE_APIKEY
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: exoscale
|
|
key: apiKey
|
|
- name: EXTERNAL_DNS_EXOSCALE_APISECRET
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: exoscale
|
|
key: apiSecret
|