Skip to content

Commit 990d4a7

Browse files
committed
pinger: use fully qualified domain name (#3032)
1 parent 11ce268 commit 990d4a7

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
@@ -34,23 +34,23 @@ POD_GATEWAY="10.16.0.1"
3434
SVC_CIDR="10.96.0.0/12" # Do NOT overlap with NODE/POD/JOIN CIDR
3535
JOIN_CIDR="100.64.0.0/16" # Do NOT overlap with NODE/POD/SVC CIDR
3636
PINGER_EXTERNAL_ADDRESS="114.114.114.114" # Pinger check external ip probe
37-
PINGER_EXTERNAL_DOMAIN="alauda.cn" # Pinger check external domain probe
37+
PINGER_EXTERNAL_DOMAIN="alauda.cn." # Pinger check external domain probe
3838
SVC_YAML_IPFAMILYPOLICY=""
3939
if [ "$IPV6" = "true" ]; then
4040
POD_CIDR="fd00:10:16::/64" # Do NOT overlap with NODE/SVC/JOIN CIDR
4141
POD_GATEWAY="fd00:10:16::1"
4242
SVC_CIDR="fd00:10:96::/112" # Do NOT overlap with NODE/POD/JOIN CIDR
4343
JOIN_CIDR="fd00:100:64::/64" # Do NOT overlap with NODE/POD/SVC CIDR
4444
PINGER_EXTERNAL_ADDRESS="2400:3200::1"
45-
PINGER_EXTERNAL_DOMAIN="google.com"
45+
PINGER_EXTERNAL_DOMAIN="google.com."
4646
fi
4747
if [ "$DUAL_STACK" = "true" ]; then
4848
POD_CIDR="10.16.0.0/16,fd00:10:16::/64" # Do NOT overlap with NODE/SVC/JOIN CIDR
4949
POD_GATEWAY="10.16.0.1,fd00:10:16::1"
5050
SVC_CIDR="10.96.0.0/12,fd00:10:96::/112" # Do NOT overlap with NODE/POD/JOIN CIDR
5151
JOIN_CIDR="100.64.0.0/16,fd00:100:64::/64" # Do NOT overlap with NODE/POD/SVC CIDR
5252
PINGER_EXTERNAL_ADDRESS="114.114.114.114,2400:3200::1"
53-
PINGER_EXTERNAL_DOMAIN="google.com"
53+
PINGER_EXTERNAL_DOMAIN="google.com."
5454
SVC_YAML_IPFAMILYPOLICY="ipFamilyPolicy: PreferDualStack"
5555
fi
5656

kubeovn-helm/values.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,23 +51,23 @@ ipv4:
5151
SVC_CIDR: "10.96.0.0/12"
5252
JOIN_CIDR: "100.64.0.0/16"
5353
PINGER_EXTERNAL_ADDRESS: "114.114.114.114"
54-
PINGER_EXTERNAL_DOMAIN: "alauda.cn"
54+
PINGER_EXTERNAL_DOMAIN: "alauda.cn."
5555

5656
ipv6:
5757
POD_CIDR: "fd00:10:16::/64"
5858
POD_GATEWAY: "fd00:10:16::1"
5959
SVC_CIDR: "fd00:10:96::/112"
6060
JOIN_CIDR: "fd00:100:64::/64"
6161
PINGER_EXTERNAL_ADDRESS: "2400:3200::1"
62-
PINGER_EXTERNAL_DOMAIN: "google.com"
62+
PINGER_EXTERNAL_DOMAIN: "google.com."
6363

6464
dual_stack:
6565
POD_CIDR: "10.16.0.0/16,fd00:10:16::/64"
6666
POD_GATEWAY: "10.16.0.1,fd00:10:16::1"
6767
SVC_CIDR: "10.96.0.0/12,fd00:10:96::/112"
6868
JOIN_CIDR: "100.64.0.0/16,fd00:100:64::/64"
6969
PINGER_EXTERNAL_ADDRESS: "114.114.114.114,2400:3200::1"
70-
PINGER_EXTERNAL_DOMAIN: "google.com"
70+
PINGER_EXTERNAL_DOMAIN: "google.com."
7171

7272
perform:
7373
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
@@ -263,7 +263,7 @@ spec:
263263
command:
264264
- /kube-ovn/kube-ovn-pinger
265265
- --external-address=2400:3200::1
266-
- --external-dns=alauda.cn
266+
- --external-dns=google.com.
267267
imagePullPolicy: IfNotPresent
268268
securityContext:
269269
runAsUser: 0

yamls/kube-ovn.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ spec:
295295
command:
296296
- /kube-ovn/kube-ovn-pinger
297297
- --external-address=114.114.114.114
298-
- --external-dns=alauda.cn
298+
- --external-dns=alauda.cn.
299299
imagePullPolicy: IfNotPresent
300300
securityContext:
301301
runAsUser: 0

0 commit comments

Comments
 (0)