fix: github action cannot ping 114 #3486
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull Request
What type of this PR
Examples of user facing changes:
Which issue(s) this PR fixes
Fixes #(issue-number)
WHAT
🤖[deprecated] Generated by Copilot at f9d56d6
This pull request replaces the external IP addresses used by the kube-ovn-pinger pod and the network connectivity tests with more reliable and available ones. It changes the
--external-address
argument and thePINGER_EXTERNAL_ADDRESS
parameter in various files to use1.1.1.1
for IPv4 and2606:4700:4700::1111
for IPv6.🤖[deprecated] Generated by Copilot at f9d56d6
HOW
🤖[deprecated] Generated by Copilot at f9d56d6
114.114.114.114
and2400:3200::1
to1.1.1.1
and2606:4700:4700::1111
in the following files and parameters:charts/values.yaml
for thePINGER_EXTERNAL_ADDRESS
parameter (link,link,link)pkg/pinger/config.go
for theargExternalAddress
flag (link)test/e2e/kube-ovn/kubectl-ko/kubectl-ko.go
for theexternalIP
variable (link)test/e2e/kube-ovn/subnet/subnet.go
for theexternalIP
variable (link,link)yamls/kube-ovn-dual-stack.yaml
andyamls/kube-ovn.yaml
for the--external-address
argument (link,link)