coredns-deployment/kubernetes/coredns.yaml.sed

156 lines
3.2 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
---
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
kubernetes CLUSTER_DOMAIN REVERSE_CIDRS {
2017-12-19 15:10:29 +01:00
pods insecure
2018-02-22 15:54:08 +01:00
upstream
fallthrough in-addr.arpa ip6.arpa
2017-12-19 00:37:19 +01:00
}
prometheus :9153
2017-02-22 22:23:11 +01:00
proxy . /etc/resolv.conf
cache 30
reload
2017-02-22 22:23:11 +01:00
}
---
apiVersion: extensions/v1beta1
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"
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:
k8s-app: kube-dns
2017-02-22 22:23:11 +01:00
template:
metadata:
labels:
k8s-app: kube-dns
2017-02-22 22:23:11 +01:00
spec:
2017-10-31 14:21:28 +01:00
serviceAccountName: coredns
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
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
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:
k8s-app: kube-dns
2017-02-22 22:23:11 +01:00
kubernetes.io/cluster-service: "true"
kubernetes.io/name: "CoreDNS"
spec:
selector:
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