Skip to content

Commit

Permalink
change default values, enable both tcp and udp
Browse files Browse the repository at this point in the history
Signed-off-by: tombokombo <[email protected]>
  • Loading branch information
tombokombo committed Jan 20, 2022
1 parent 1e1c981 commit f9b54d4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/unbound/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
description: Unbound is a fast caching DNS resolver
home: https://www.unbound.net/
name: unbound
version: 0.0.4
version: 0.0.5
appVersion: 0.0.1
sources:
- http://unbound.nlnetlabs.nl/svn/
Expand Down
6 changes: 5 additions & 1 deletion charts/unbound/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ containers:
logLocalActions: "yes"
logServfail: "yes"
numThreads: 1
# for tcp see comment on service, should be enabled
# udp is enabled by default due to healthz container nslookup checks are udp only
doTcp: "yes"
doIp6: "no"
prefetch: "yes"
Expand Down Expand Up @@ -100,8 +102,10 @@ readinessProbe:

service:
type: ClusterIP
# due to https://ben-lab.github.io/kubernetes-UDP-TCP-bug-same-port/ annoce deployed, ports will never change
# so it's recomended to enable both, you need udp due to coredns forward healt-checks are udp only
tcp:
enabled: false
enabled: true
udp:
enabled: true
labels: {}
Expand Down

0 comments on commit f9b54d4

Please sign in to comment.