coredns-deployment/kubernetes/coredns.yaml.sed

202 lines
4.4 KiB
Sed
Raw Normal View History

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:
- 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: |
.:53 {
2017-02-22 22:23:11 +01:00
errors
health {
lameduck 5s
}
ready
kubernetes CLUSTER_DOMAIN REVERSE_CIDRS {
fallthrough in-addr.arpa ip6.arpa
}
prometheus :9153
forward . UPSTREAMNAMESERVER {
max_concurrent 1000
}
2017-02-22 22:23:11 +01:00
cache 30
2018-08-27 23:00:12 +02:00
loop
reload
loadbalance
}STUBDOMAINS
2017-02-22 22:23:11 +01:00
---
apiVersion: apps/v1
2017-02-22 22:23:11 +01:00
kind: Deployment
metadata:
name: coredns
namespace: kube-system
labels:
k8s-app: kube-dns
2017-02-22 22:23:11 +01:00
kubernetes.io/name: "CoreDNS"
app.kubernetes.io/name: coredns
2017-02-22 22:23:11 +01:00
spec:
# 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:
k8s-app: kube-dns
app.kubernetes.io/name: coredns
2017-02-22 22:23:11 +01:00
template:
metadata:
labels:
k8s-app: kube-dns
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
tolerations:
- key: "CriticalAddonsOnly"
operator: "Exists"
nodeSelector:
kubernetes.io/os: linux
affinity:
podAntiAffinity:
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:
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
readOnly: true
2017-02-22 22:23:11 +01:00
ports:
- containerPort: 53
2017-02-22 22:23:11 +01:00
name: dns
protocol: UDP
- 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
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
2019-01-29 21:03:59 +01:00
readinessProbe:
httpGet:
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:
k8s-app: kube-dns
2017-02-22 22:23:11 +01:00
kubernetes.io/cluster-service: "true"
kubernetes.io/name: "CoreDNS"
app.kubernetes.io/name: coredns
2017-02-22 22:23:11 +01:00
spec:
selector:
k8s-app: kube-dns
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
- name: metrics
port: 9153
protocol: TCP