File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : coredns
3
- version : 1.42.3
3
+ version : 1.42.4
4
4
appVersion : 1.12.2
5
5
home : https://coredns.io
6
6
icon : https://coredns.io/images/CoreDNS_Colour_Horizontal.png
@@ -19,5 +19,5 @@ maintainers:
19
19
type : application
20
20
annotations :
21
21
artifacthub.io/changes : |
22
- - kind: changed
23
- description: Upgrade CoreDNS to 1.12.2
22
+ - kind: fixed
23
+ description: Fix service port removal if `scheme` is not defined, and enable use_tcp for default configuration.
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ Generate the list of ports automatically from the server definitions
86
86
TCP: tls://, grpc://, https://
87
87
*/} }
88
88
{ {- range .zones -} }
89
- { {- if has (default " " .scheme) (list " dns://" ) -} }
89
+ { {- if has (default " " .scheme) (list " dns://" " " ) -} }
90
90
{ {/* Optionally enable tcp for this service as well */} }
91
91
{ {- if eq (default false .use_tcp) true } }
92
92
{ {- $innerdict := set $innerdict " istcp" true -} }
@@ -157,7 +157,7 @@ Generate the list of ports automatically from the server definitions
157
157
TCP: tls://, grpc://, https://
158
158
*/} }
159
159
{ {- range .zones -} }
160
- { {- if has (default " " .scheme) (list " dns://" ) -} }
160
+ { {- if has (default " " .scheme) (list " dns://" " " ) -} }
161
161
{ {/* Optionally enable tcp for this service as well */} }
162
162
{ {- if eq (default false .use_tcp) true } }
163
163
{ {- $innerdict := set $innerdict " istcp" true -} }
Original file line number Diff line number Diff line change @@ -107,6 +107,7 @@ securityContext:
107
107
servers :
108
108
- zones :
109
109
- zone : .
110
+ use_tcp : true
110
111
port : 53
111
112
# -- expose the service on a different port
112
113
# servicePort: 5353
You can’t perform that action at this time.
0 commit comments