mirror of
https://gitlab.com/shouptech/flux.git
synced 2026-02-03 23:09:41 +00:00
30 lines
581 B
YAML
30 lines
581 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
labels:
|
|
addonmanager.kubernetes.io/mode: EnsureExists
|
|
k8s-app: kube-dns
|
|
name: coredns
|
|
namespace: kube-system
|
|
data:
|
|
Corefile: |
|
|
.:53 {
|
|
errors
|
|
health {
|
|
lameduck 5s
|
|
}
|
|
ready
|
|
log . {
|
|
class error
|
|
}
|
|
kubernetes cluster.local in-addr.arpa ip6.arpa {
|
|
pods insecure
|
|
fallthrough in-addr.arpa ip6.arpa
|
|
}
|
|
prometheus :9153
|
|
forward . 10.30.14.1
|
|
cache 30
|
|
loop
|
|
reload
|
|
loadbalance
|
|
}
|