-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reverse name lookup is broken for current hostname in ubuntu VMs #3185
Comments
Workaround by @lhotari for the following GitHub Action issue: actions/runner-images#3185
Hello @lhotari, |
Related to issue actions/runner-images#3185
Related to issue actions/runner-images#3185
PROCESS: Continuous integration results should be predictable. Workaround by @lhotari for the following GitHub Action issue: actions/runner-images#3185
… GitHub Actions Sporadic failures are observed on GitHub Actions when running on Ubuntu 20.04 Related to actions/runner-images#3185
… GitHub Actions (#1605) Sporadic failures are observed on GitHub Actions when running on Ubuntu 20.04/18.04 Related to actions/runner-images#3185
Temporary fix until GitHub fix issue on their environment actions/runner-images#3185 Signed-off-by: Michal Banik <[email protected]>
Temporary fix until GitHub fix issue on their environment actions/runner-images#3185 Signed-off-by: Michal Banik <[email protected]>
Can somebody here please confirm when this is done so we can remove the workarounds? |
@iemejia it should be finished by now |
The issue is reported to be resolved, e.g., see actions/runner-images#3185 and I want to test if it indeed is. Signed-off-by: vsoch <[email protected]>
Thanks @miketimofeev it works like a charm now! |
@lhotari I'm going to close the issue since the root cause is fixed. Please feel free to contact us if you have any concerns. |
@miketimofeev Sounds good. Thanks for resolving the issue. |
This reverts commit 7022ebd. GitHub Action issue has been fixed: actions/runner-images#3185 (comment)
CI's bug is from Github Actions: actions/runner-images#3185
CI's bug is from Github Actions: actions/runner-images#3185
CI's bug is from Github Actions: actions/runner-images#3185
Description
Reverse name lookup is broken for the current hostname. This leads to odd issues. Here are some reports from GitHub Community:
This is a problem report in apache/pulsar: apache/pulsar#10232
and workaround in apache/pulsar apache/pulsar#10233
I have suggested this general workaround to the problem:
Question, Bug, or Feature?: Bug
Virtual environments affected
Expected behavior
hostname -i
,nslookup $(hostname -s)
andnslookup $(hostname -l)
should return the IP address of the current hostname.Actual behavior
hostname -i
,nslookup $(hostname -s)
ornslookup $(hostname -l)
returns an IP address that changes and the IP address doesn't belong to the current host.Repro steps
Add this command to some action and run it
ip a; while [ 1 ]; do nslookup $(hostname); sleep 3; done
Example output
In the above case, the reverse lookup returns addresses 10.1.1.83 and 10.1.0.37 which aren't the ip addresses of the current host. The address of eth0 is 10.1.1.35 .
The text was updated successfully, but these errors were encountered: