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
|
|
|
|
---
|
2019-02-01 20:34:41 +01:00
|
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
2017-10-31 14:21:28 +01:00
|
|
|
kind: ClusterRole
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
kubernetes.io/bootstrapping: rbac-defaults
|
|
|
|
name: system:coredns
|
|
|
|
rules:
|
2021-02-25 17:11:45 +01:00
|
|
|
- apiGroups:
|
|
|
|
- ""
|
|
|
|
resources:
|
|
|
|
- endpoints
|
|
|
|
- services
|
|
|
|
- pods
|
|
|
|
- namespaces
|
|
|
|
verbs:
|
|
|
|
- list
|
|
|
|
- watch
|
|
|
|
- apiGroups:
|
|
|
|
- discovery.k8s.io
|
|
|
|
resources:
|
|
|
|
- endpointslices
|
|
|
|
verbs:
|
|
|
|
- list
|
|
|
|
- watch
|
2017-10-31 14:21:28 +01:00
|
|
|
---
|
2019-02-01 20:34:41 +01:00
|
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
2017-10-31 14:21:28 +01:00
|
|
|
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: |
|
2018-08-27 21:23:30 +02:00
|
|
|
.:53 {
|
2017-02-22 22:23:11 +01:00
|
|
|
errors
|
2019-11-13 22:12:35 +01:00
|
|
|
health {
|
|
|
|
lameduck 5s
|
|
|
|
}
|
2019-04-24 18:28:03 +02:00
|
|
|
ready
|
2018-01-19 18:11:55 +01:00
|
|
|
kubernetes CLUSTER_DOMAIN REVERSE_CIDRS {
|
|
|
|
fallthrough in-addr.arpa ip6.arpa
|
2020-06-16 16:33:08 +02:00
|
|
|
}
|
2017-12-11 15:38:44 +01:00
|
|
|
prometheus :9153
|
2020-06-29 16:58:50 +02:00
|
|
|
forward . UPSTREAMNAMESERVER {
|
|
|
|
max_concurrent 1000
|
|
|
|
}
|
2017-02-22 22:23:11 +01:00
|
|
|
cache 30
|
2018-08-27 23:00:12 +02:00
|
|
|
loop
|
2018-04-24 18:19:27 +02:00
|
|
|
reload
|
2018-07-11 17:17:29 +02:00
|
|
|
loadbalance
|
2018-08-21 18:11:02 +02:00
|
|
|
}STUBDOMAINS
|
2017-02-22 22:23:11 +01:00
|
|
|
---
|
2019-02-01 19:38:10 +01:00
|
|
|
apiVersion: apps/v1
|
2017-02-22 22:23:11 +01:00
|
|
|
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"
|
2022-11-01 14:16:22 +01:00
|
|
|
app.kubernetes.io/name: coredns
|
2017-02-22 22:23:11 +01:00
|
|
|
spec:
|
2019-11-13 22:12:35 +01:00
|
|
|
# replicas: not specified here:
|
|
|
|
# 1. Default is 1.
|
|
|
|
# 2. Will be tuned in real time if DNS horizontal auto-scaling is turned on.
|
2018-01-03 12:26:22 +01:00
|
|
|
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
|
2022-11-01 14:16:22 +01:00
|
|
|
app.kubernetes.io/name: coredns
|
2017-02-22 22:23:11 +01:00
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
2018-04-12 16:44:40 +02:00
|
|
|
k8s-app: kube-dns
|
2022-11-01 14:16:22 +01:00
|
|
|
app.kubernetes.io/name: coredns
|
2017-02-22 22:23:11 +01:00
|
|
|
spec:
|
2019-02-21 18:08:05 +01:00
|
|
|
priorityClassName: system-cluster-critical
|
2017-10-31 14:21:28 +01:00
|
|
|
serviceAccountName: coredns
|
2017-10-31 15:10:05 +01:00
|
|
|
tolerations:
|
|
|
|
- key: "CriticalAddonsOnly"
|
|
|
|
operator: "Exists"
|
2018-10-23 20:53:16 +02:00
|
|
|
nodeSelector:
|
2020-02-19 18:52:29 +01:00
|
|
|
kubernetes.io/os: linux
|
2019-11-13 22:12:35 +01:00
|
|
|
affinity:
|
2020-05-07 19:29:34 +02:00
|
|
|
podAntiAffinity:
|
2022-01-14 15:18:23 +01:00
|
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
|
|
- labelSelector:
|
|
|
|
matchExpressions:
|
|
|
|
- key: k8s-app
|
|
|
|
operator: In
|
|
|
|
values: ["kube-dns"]
|
|
|
|
topologyKey: kubernetes.io/hostname
|
2017-02-22 22:23:11 +01:00
|
|
|
containers:
|
|
|
|
- name: coredns
|
2022-09-14 21:14:45 +02:00
|
|
|
image: coredns/coredns:1.9.4
|
2017-12-14 16:18:44 +01:00
|
|
|
imagePullPolicy: IfNotPresent
|
2018-08-14 18:56:30 +02:00
|
|
|
resources:
|
|
|
|
limits:
|
2018-08-29 16:05:45 +02:00
|
|
|
memory: 170Mi
|
2018-08-14 18:56:30 +02:00
|
|
|
requests:
|
|
|
|
cpu: 100m
|
|
|
|
memory: 70Mi
|
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:
|
2018-08-27 21:23:30 +02:00
|
|
|
- containerPort: 53
|
2017-02-22 22:23:11 +01:00
|
|
|
name: dns
|
|
|
|
protocol: UDP
|
2018-08-27 21:23:30 +02:00
|
|
|
- containerPort: 53
|
2017-02-22 22:23:11 +01:00
|
|
|
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:
|
2018-08-27 21:23:30 +02:00
|
|
|
add:
|
|
|
|
- NET_BIND_SERVICE
|
2018-05-29 15:02:00 +02:00
|
|
|
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
|
2019-01-29 21:03:59 +01:00
|
|
|
readinessProbe:
|
|
|
|
httpGet:
|
2019-04-24 18:28:03 +02:00
|
|
|
path: /ready
|
|
|
|
port: 8181
|
2019-01-29 21:03:59 +01:00
|
|
|
scheme: HTTP
|
2017-02-22 22:23:11 +01:00
|
|
|
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:
|
2018-06-28 19:15:28 +02:00
|
|
|
prometheus.io/port: "9153"
|
2018-04-02 15:42:03 +02:00
|
|
|
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"
|
2022-11-01 14:16:22 +01:00
|
|
|
app.kubernetes.io/name: coredns
|
2017-02-22 22:23:11 +01:00
|
|
|
spec:
|
|
|
|
selector:
|
2018-04-12 16:44:40 +02:00
|
|
|
k8s-app: kube-dns
|
2022-11-01 14:16:22 +01:00
|
|
|
app.kubernetes.io/name: coredns
|
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
|
2018-11-27 18:03:15 +01:00
|
|
|
- name: metrics
|
|
|
|
port: 9153
|
|
|
|
protocol: TCP
|