Created
April 10, 2020 16:33
-
-
Save amimof/522c56597fab393066800ac48e267df4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: coredns | |
namespace: kube-system | |
labels: | |
k8s-app: coredns | |
data: | |
Corefile: |- | |
.:53 { | |
errors | |
health { | |
lameduck 5s | |
} | |
ready | |
kubernetes cluster.local in-addr.arpa ip6.arpa { | |
pods insecure | |
fallthrough in-addr.arpa ip6.arpa | |
ttl 30 | |
} | |
prometheus 0.0.0.0:9153 | |
forward . /etc/resolv.conf | |
cache 30 | |
loop | |
reload | |
loadbalance | |
} | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRole | |
metadata: | |
name: coredns | |
labels: | |
k8s-app: coredns | |
rules: | |
- apiGroups: | |
- "" | |
resources: | |
- endpoints | |
- services | |
- pods | |
- namespaces | |
verbs: | |
- list | |
- watch | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRoleBinding | |
metadata: | |
name: coredns | |
labels: | |
k8s-app: coredns | |
roleRef: | |
apiGroup: rbac.authorization.k8s.io | |
kind: ClusterRole | |
name: coredns | |
subjects: | |
- kind: ServiceAccount | |
name: default | |
namespace: kube-system | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: coredns | |
namespace: kube-system | |
labels: | |
k8s-app: coredns | |
annotations: | |
prometheus.io/port: "9153" | |
prometheus.io/scrape: "true" | |
spec: | |
selector: | |
k8s-app: coredns | |
clusterIP: 10.32.0.10 | |
ports: | |
- {port: 53, protocol: UDP, name: udp-53} | |
- {port: 53, protocol: TCP, name: tcp-53} | |
type: ClusterIP | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: coredns | |
namespace: kube-system | |
labels: | |
k8s-app: coredns | |
spec: | |
replicas: 1 | |
strategy: | |
type: RollingUpdate | |
rollingUpdate: | |
maxUnavailable: 1 | |
maxSurge: 10% | |
selector: | |
matchLabels: | |
k8s-app: coredns | |
template: | |
metadata: | |
labels: | |
k8s-app: coredns | |
spec: | |
serviceAccountName: default | |
dnsPolicy: Default | |
containers: | |
- name: "coredns" | |
image: "coredns/coredns:1.6.7" | |
imagePullPolicy: IfNotPresent | |
args: [ "-conf", "/etc/coredns/Corefile" ] | |
volumeMounts: | |
- name: config-volume | |
mountPath: /etc/coredns | |
resources: | |
limits: | |
cpu: 100m | |
memory: 128Mi | |
requests: | |
cpu: 100m | |
memory: 128Mi | |
ports: | |
- {containerPort: 53, protocol: UDP, name: udp-53} | |
- {containerPort: 53, protocol: TCP, name: tcp-53} | |
livenessProbe: | |
httpGet: | |
path: /health | |
port: 8080 | |
scheme: HTTP | |
initialDelaySeconds: 60 | |
timeoutSeconds: 5 | |
successThreshold: 1 | |
failureThreshold: 5 | |
readinessProbe: | |
httpGet: | |
path: /ready | |
port: 8181 | |
scheme: HTTP | |
initialDelaySeconds: 10 | |
timeoutSeconds: 5 | |
successThreshold: 1 | |
failureThreshold: 5 | |
volumes: | |
- name: config-volume | |
configMap: | |
name: coredns | |
items: | |
- key: Corefile | |
path: Corefile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment