2017-02-22 22:23:11 +01:00
|
|
|
apiVersion: v1
|
2017-10-31 14:21:28 +01:00
|
|
|
kind: ServiceAccount
|
|
|
|
metadata:
|
|
|
|
name: coredns
|
|
|
|
namespace: kube-system
|
|
|
|
---
|
|
|
|
apiVersion: rbac.authorization.k8s.io/v1beta1
|
|
|
|
kind: ClusterRole
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
kubernetes.io/bootstrapping: rbac-defaults
|
|
|
|
name: system:coredns
|
|
|
|
rules:
|
|
|
|
- apiGroups:
|
|
|
|
- ""
|
|
|
|
resources:
|
|
|
|
- endpoints
|
|
|
|
- services
|
|
|
|
- pods
|
|
|
|
- namespaces
|
|
|
|
verbs:
|
|
|
|
- list
|
|
|
|
- watch
|
|
|
|
---
|
|
|
|
apiVersion: rbac.authorization.k8s.io/v1beta1
|
|
|
|
kind: ClusterRoleBinding
|
|
|
|
metadata:
|
|
|
|
annotations:
|
|
|
|
rbac.authorization.kubernetes.io/autoupdate: "true"
|
|
|
|
labels:
|
|
|
|
kubernetes.io/bootstrapping: rbac-defaults
|
|
|
|
name: system:coredns
|
|
|
|
roleRef:
|
|
|
|
apiGroup: rbac.authorization.k8s.io
|
|
|
|
kind: ClusterRole
|
|
|
|
name: system:coredns
|
|
|
|
subjects:
|
|
|
|
- kind: ServiceAccount
|
|
|
|
name: coredns
|
|
|
|
namespace: kube-system
|
|
|
|
---
|
|
|
|
apiVersion: v1
|
2017-02-22 22:23:11 +01:00
|
|
|
kind: ConfigMap
|
|
|
|
metadata:
|
|
|
|
name: coredns
|
|
|
|
namespace: kube-system
|
|
|
|
data:
|
|
|
|
Corefile: |
|
|
|
|
.:53 {
|
|
|
|
errors
|
|
|
|
health
|
2018-01-19 18:11:55 +01:00
|
|
|
kubernetes CLUSTER_DOMAIN REVERSE_CIDRS {
|
2017-12-19 15:10:29 +01:00
|
|
|
pods insecure
|
2018-02-22 15:54:08 +01:00
|
|
|
upstream
|
2018-01-19 18:11:55 +01:00
|
|
|
fallthrough in-addr.arpa ip6.arpa
|
2017-12-19 00:37:19 +01:00
|
|
|
}
|
2017-12-11 15:38:44 +01:00
|
|
|
prometheus :9153
|
2017-02-22 22:23:11 +01:00
|
|
|
proxy . /etc/resolv.conf
|
|
|
|
cache 30
|
2018-04-24 18:19:27 +02:00
|
|
|
reload
|
2017-02-22 22:23:11 +01:00
|
|
|
}
|
|
|
|
---
|
|
|
|
apiVersion: extensions/v1beta1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: coredns
|
|
|
|
namespace: kube-system
|
|
|
|
labels:
|
2018-04-12 16:44:40 +02:00
|
|
|
k8s-app: kube-dns
|
2017-02-22 22:23:11 +01:00
|
|
|
kubernetes.io/name: "CoreDNS"
|
|
|
|
spec:
|
2018-01-03 12:26:22 +01:00
|
|
|
replicas: 2
|
|
|
|
strategy:
|
|
|
|
type: RollingUpdate
|
|
|
|
rollingUpdate:
|
|
|
|
maxUnavailable: 1
|
2017-02-22 22:23:11 +01:00
|
|
|
selector:
|
|
|
|
matchLabels:
|
2018-04-12 16:44:40 +02:00
|
|
|
k8s-app: kube-dns
|
2017-02-22 22:23:11 +01:00
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
2018-04-12 16:44:40 +02:00
|
|
|
k8s-app: kube-dns
|
2017-02-22 22:23:11 +01:00
|
|
|
spec:
|
2017-10-31 14:21:28 +01:00
|
|
|
serviceAccountName: coredns
|
2017-10-31 15:10:05 +01:00
|
|
|
tolerations:
|
|
|
|
- key: "CriticalAddonsOnly"
|
|
|
|
operator: "Exists"
|
2017-02-22 22:23:11 +01:00
|
|
|
containers:
|
|
|
|
- name: coredns
|
2018-05-24 13:05:18 +02:00
|
|
|
image: coredns/coredns:1.1.3
|
2017-12-14 16:18:44 +01:00
|
|
|
imagePullPolicy: IfNotPresent
|
2017-02-22 22:23:11 +01:00
|
|
|
args: [ "-conf", "/etc/coredns/Corefile" ]
|
|
|
|
volumeMounts:
|
|
|
|
- name: config-volume
|
|
|
|
mountPath: /etc/coredns
|
2018-05-29 15:02:00 +02:00
|
|
|
readOnly: true
|
2017-02-22 22:23:11 +01:00
|
|
|
ports:
|
|
|
|
- containerPort: 53
|
|
|
|
name: dns
|
|
|
|
protocol: UDP
|
|
|
|
- containerPort: 53
|
|
|
|
name: dns-tcp
|
|
|
|
protocol: TCP
|
2018-04-02 15:42:03 +02:00
|
|
|
- containerPort: 9153
|
|
|
|
name: metrics
|
|
|
|
protocol: TCP
|
2018-05-29 15:02:00 +02:00
|
|
|
securityContext:
|
|
|
|
allowPrivilegeEscalation: false
|
|
|
|
capabilities:
|
|
|
|
add:
|
|
|
|
- NET_BIND_SERVICE
|
|
|
|
drop:
|
|
|
|
- all
|
|
|
|
readOnlyRootFilesystem: true
|
2017-02-22 22:23:11 +01:00
|
|
|
livenessProbe:
|
|
|
|
httpGet:
|
|
|
|
path: /health
|
|
|
|
port: 8080
|
|
|
|
scheme: HTTP
|
|
|
|
initialDelaySeconds: 60
|
|
|
|
timeoutSeconds: 5
|
|
|
|
successThreshold: 1
|
|
|
|
failureThreshold: 5
|
|
|
|
dnsPolicy: Default
|
|
|
|
volumes:
|
|
|
|
- name: config-volume
|
|
|
|
configMap:
|
|
|
|
name: coredns
|
|
|
|
items:
|
|
|
|
- key: Corefile
|
|
|
|
path: Corefile
|
|
|
|
---
|
|
|
|
apiVersion: v1
|
|
|
|
kind: Service
|
|
|
|
metadata:
|
|
|
|
name: kube-dns
|
|
|
|
namespace: kube-system
|
2018-04-02 15:42:03 +02:00
|
|
|
annotations:
|
|
|
|
prometheus.io/scrape: "true"
|
2017-02-22 22:23:11 +01:00
|
|
|
labels:
|
2018-04-12 16:44:40 +02:00
|
|
|
k8s-app: kube-dns
|
2017-02-22 22:23:11 +01:00
|
|
|
kubernetes.io/cluster-service: "true"
|
|
|
|
kubernetes.io/name: "CoreDNS"
|
|
|
|
spec:
|
|
|
|
selector:
|
2018-04-12 16:44:40 +02:00
|
|
|
k8s-app: kube-dns
|
2017-02-22 22:23:11 +01:00
|
|
|
clusterIP: CLUSTER_DNS_IP
|
|
|
|
ports:
|
|
|
|
- name: dns
|
|
|
|
port: 53
|
|
|
|
protocol: UDP
|
|
|
|
- name: dns-tcp
|
|
|
|
port: 53
|
|
|
|
protocol: TCP
|