Skip to content

Commit 0f3d599

Browse files
committed
pinger: use fully qualified domain name (#3032)
1 parent 5400c37 commit 0f3d599

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

dist/images/install.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,23 +46,23 @@ POD_GATEWAY="10.16.0.1"
4646
SVC_CIDR="10.96.0.0/12" # Do NOT overlap with NODE/POD/JOIN CIDR
4747
JOIN_CIDR="100.64.0.0/16" # Do NOT overlap with NODE/POD/SVC CIDR
4848
PINGER_EXTERNAL_ADDRESS="114.114.114.114" # Pinger check external ip probe
49-
PINGER_EXTERNAL_DOMAIN="alauda.cn" # Pinger check external domain probe
49+
PINGER_EXTERNAL_DOMAIN="alauda.cn." # Pinger check external domain probe
5050
SVC_YAML_IPFAMILYPOLICY=""
5151
if [ "$IPV6" = "true" ]; then
5252
POD_CIDR="fd00:10:16::/64" # Do NOT overlap with NODE/SVC/JOIN CIDR
5353
POD_GATEWAY="fd00:10:16::1"
5454
SVC_CIDR="fd00:10:96::/112" # Do NOT overlap with NODE/POD/JOIN CIDR
5555
JOIN_CIDR="fd00:100:64::/64" # Do NOT overlap with NODE/POD/SVC CIDR
5656
PINGER_EXTERNAL_ADDRESS="2400:3200::1"
57-
PINGER_EXTERNAL_DOMAIN="google.com"
57+
PINGER_EXTERNAL_DOMAIN="google.com."
5858
fi
5959
if [ "$DUAL_STACK" = "true" ]; then
6060
POD_CIDR="10.16.0.0/16,fd00:10:16::/64" # Do NOT overlap with NODE/SVC/JOIN CIDR
6161
POD_GATEWAY="10.16.0.1,fd00:10:16::1"
6262
SVC_CIDR="10.96.0.0/12,fd00:10:96::/112" # Do NOT overlap with NODE/POD/JOIN CIDR
6363
JOIN_CIDR="100.64.0.0/16,fd00:100:64::/64" # Do NOT overlap with NODE/POD/SVC CIDR
6464
PINGER_EXTERNAL_ADDRESS="114.114.114.114,2400:3200::1"
65-
PINGER_EXTERNAL_DOMAIN="google.com"
65+
PINGER_EXTERNAL_DOMAIN="google.com."
6666
SVC_YAML_IPFAMILYPOLICY="ipFamilyPolicy: PreferDualStack"
6767
fi
6868

kubeovn-helm/values.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,23 +57,23 @@ ipv4:
5757
SVC_CIDR: "10.96.0.0/12"
5858
JOIN_CIDR: "100.64.0.0/16"
5959
PINGER_EXTERNAL_ADDRESS: "114.114.114.114"
60-
PINGER_EXTERNAL_DOMAIN: "alauda.cn"
60+
PINGER_EXTERNAL_DOMAIN: "alauda.cn."
6161

6262
ipv6:
6363
POD_CIDR: "fd00:10:16::/64"
6464
POD_GATEWAY: "fd00:10:16::1"
6565
SVC_CIDR: "fd00:10:96::/112"
6666
JOIN_CIDR: "fd00:100:64::/64"
6767
PINGER_EXTERNAL_ADDRESS: "2400:3200::1"
68-
PINGER_EXTERNAL_DOMAIN: "google.com"
68+
PINGER_EXTERNAL_DOMAIN: "google.com."
6969

7070
dual_stack:
7171
POD_CIDR: "10.16.0.0/16,fd00:10:16::/64"
7272
POD_GATEWAY: "10.16.0.1,fd00:10:16::1"
7373
SVC_CIDR: "10.96.0.0/12,fd00:10:96::/112"
7474
JOIN_CIDR: "100.64.0.0/16,fd00:100:64::/64"
7575
PINGER_EXTERNAL_ADDRESS: "114.114.114.114,2400:3200::1"
76-
PINGER_EXTERNAL_DOMAIN: "google.com"
76+
PINGER_EXTERNAL_DOMAIN: "google.com."
7777

7878
performance:
7979
MODULES: "kube_ovn_fastpath.ko"

yamls/kube-ovn-dual-stack.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ spec:
289289
command:
290290
- /kube-ovn/kube-ovn-pinger
291291
- --external-address=114.114.114.114,2400:3200::1
292-
- --external-dns=alauda.cn
292+
- --external-dns=google.com.
293293
imagePullPolicy: IfNotPresent
294294
securityContext:
295295
runAsUser: 0

yamls/kube-ovn-ipv6.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ spec:
266266
command:
267267
- /kube-ovn/kube-ovn-pinger
268268
- --external-address=2400:3200::1
269-
- --external-dns=alauda.cn
269+
- --external-dns=google.com.
270270
imagePullPolicy: IfNotPresent
271271
securityContext:
272272
runAsUser: 0

yamls/kube-ovn.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ spec:
312312
command:
313313
- /kube-ovn/kube-ovn-pinger
314314
- --external-address=114.114.114.114
315-
- --external-dns=alauda.cn
315+
- --external-dns=alauda.cn.
316316
imagePullPolicy: IfNotPresent
317317
securityContext:
318318
runAsUser: 0

0 commit comments

Comments
 (0)