mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2026-05-04 22:26:11 +02:00
* fix: e2e test with dnsPolicy ClusterFirstWithHostNet for hostNetwork pods * remove flakiness * remove empty lines * fix tests * removed trailing line
91 lines
1.7 KiB
YAML
91 lines
1.7 KiB
YAML
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: coredns
|
|
namespace: default
|
|
data:
|
|
Corefile: |
|
|
external.dns:5353 {
|
|
errors
|
|
log
|
|
etcd {
|
|
stubzones
|
|
path /skydns
|
|
endpoint http://etcd-0.etcd:2379
|
|
}
|
|
cache 30
|
|
forward . /etc/resolv.conf
|
|
}
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: coredns
|
|
namespace: default
|
|
labels:
|
|
app: coredns
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: coredns
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: coredns
|
|
spec:
|
|
hostNetwork: true
|
|
dnsPolicy: ClusterFirstWithHostNet
|
|
containers:
|
|
- name: coredns
|
|
image: coredns/coredns:1.13.1
|
|
args: [ "-conf", "/etc/coredns/Corefile" ]
|
|
volumeMounts:
|
|
- name: config-volume
|
|
mountPath: /etc/coredns
|
|
ports:
|
|
- containerPort: 5353
|
|
name: dns
|
|
protocol: UDP
|
|
- containerPort: 5353
|
|
name: dns-tcp
|
|
protocol: TCP
|
|
livenessProbe:
|
|
tcpSocket:
|
|
port: 5353
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 10
|
|
readinessProbe:
|
|
tcpSocket:
|
|
port: 5353
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 5
|
|
volumes:
|
|
- name: config-volume
|
|
configMap:
|
|
name: coredns
|
|
items:
|
|
- key: Corefile
|
|
path: Corefile
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: coredns
|
|
namespace: default
|
|
labels:
|
|
app: coredns
|
|
spec:
|
|
selector:
|
|
app: coredns
|
|
ports:
|
|
- name: dns
|
|
port: 5353
|
|
targetPort: 5353
|
|
protocol: UDP
|
|
- name: dns-tcp
|
|
port: 5353
|
|
targetPort: 5353
|
|
protocol: TCP
|