Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions assets/dns/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ spec:
protocol: TCP
readinessProbe:
httpGet:
path: /ready
port: 8181
path: /health
port: 8080
scheme: HTTP
initialDelaySeconds: 10
periodSeconds: 10
Expand Down Expand Up @@ -150,7 +150,6 @@ spec:
dnsPolicy: Default
nodeSelector:
kubernetes.io/os: linux
terminationGracePeriodSeconds: 120
volumes:
- name: config-volume
configMap:
Expand Down
8 changes: 4 additions & 4 deletions pkg/manifests/bindata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions pkg/operator/controller/controller_dns_configmap.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,7 @@ var corefileTemplate = template.Must(template.New("Corefile").Parse(`{{range .Se
{{end -}}
.:5353 {
errors
health {
lameduck 60s
}
ready
health
kubernetes {{.ClusterDomain}} in-addr.arpa ip6.arpa {
pods insecure
upstream
Expand Down
5 changes: 1 addition & 4 deletions pkg/operator/controller/controller_dns_configmap_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,7 @@ bar.com:5353 example.com:5353 {
}
.:5353 {
errors
health {
lameduck 60s
}
ready
health
kubernetes cluster.local in-addr.arpa ip6.arpa {
pods insecure
upstream
Expand Down