2016-03-18 14:07:33 +00:00
|
|
|
---
|
|
|
|
apiVersion: extensions/v1beta1
|
|
|
|
kind: DaemonSet
|
|
|
|
metadata:
|
|
|
|
name: dnsmasq
|
|
|
|
namespace: kube-system
|
|
|
|
labels:
|
|
|
|
k8s-app: dnsmasq
|
|
|
|
spec:
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
k8s-app: dnsmasq
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: dnsmasq
|
|
|
|
image: andyshinn/dnsmasq:2.72
|
|
|
|
command:
|
|
|
|
- dnsmasq
|
|
|
|
args:
|
|
|
|
- -k
|
|
|
|
- "-7"
|
|
|
|
- /etc/dnsmasq.d
|
|
|
|
securityContext:
|
|
|
|
capabilities:
|
|
|
|
add:
|
|
|
|
- NET_ADMIN
|
2016-09-20 08:32:05 +00:00
|
|
|
imagePullPolicy: IfNotPresent
|
2016-03-18 14:07:33 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: 100m
|
|
|
|
memory: 256M
|
|
|
|
ports:
|
|
|
|
- name: dns
|
|
|
|
containerPort: 53
|
|
|
|
protocol: UDP
|
|
|
|
- name: dns-tcp
|
|
|
|
containerPort: 53
|
|
|
|
protocol: TCP
|
|
|
|
volumeMounts:
|
|
|
|
- name: etcdnsmasqd
|
|
|
|
mountPath: /etc/dnsmasq.d
|
|
|
|
- name: etcdnsmasqdavailable
|
|
|
|
mountPath: /etc/dnsmasq.d-available
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: etcdnsmasqd
|
|
|
|
hostPath:
|
|
|
|
path: /etc/dnsmasq.d
|
|
|
|
- name: etcdnsmasqdavailable
|
|
|
|
hostPath:
|
|
|
|
path: /etc/dnsmasq.d-available
|
2016-09-22 17:14:51 +00:00
|
|
|
dnsPolicy: Default # Don't use cluster DNS.
|