27 lines
652 B
YAML
27 lines
652 B
YAML
# Source: coredns/templates/configmap.yaml
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: coredns
|
|
namespace: vynil-infra
|
|
labels:
|
|
app.kubernetes.io/managed-by: "Helm"
|
|
app.kubernetes.io/instance: "coredns"
|
|
helm.sh/chart: "coredns-1.29.0"
|
|
k8s-app: coredns
|
|
kubernetes.io/cluster-service: "true"
|
|
kubernetes.io/name: "CoreDNS"
|
|
app.kubernetes.io/name: coredns
|
|
data:
|
|
Corefile: |-
|
|
.:53 {
|
|
errors {
|
|
consolidate 5m ".* i/o timeout$" warning
|
|
consolidate 30s "^Failed to .+"
|
|
}
|
|
health {
|
|
lameduck 5s
|
|
}
|
|
ready
|
|
file /etc/coredns/toto.db toto
|
|
} |