-
Notifications
You must be signed in to change notification settings - Fork 178
update glibc package to 2.35-r0 to resolve segfaults #973
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
Conversation
|
/test ESPv2-presubmit |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: paulhong01, sunaydagli The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
New changes are detected. LGTM label has been removed. |
|
@sunaydagli: The following tests failed, say
DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
The alpine base image was updated to 3.22 in #961. However, the glibc seems to not be updated, causing segfaults. As a result, the glibc should be updated to the most up-to-date glibc from the existing package manager used, which is glibc version 2.35. On first analysis, this fixes the segfaults. When doing analysis, this was the output of ldd, which prompted this change.
kubectl exec -it $(kubectl get pod -l app=esp-envoy-failure -o jsonpath="{.items[0].metadata.name}") -c esp -- ldd /bin/envoy
/lib64/ld-linux-x86-64.so.2 (0x7e42fa9e0000)
libm.so.6 => /lib64/ld-linux-x86-64.so.2 (0x7e42fa9e0000)
librt.so.1 => /lib64/ld-linux-x86-64.so.2 (0x7e42fa9e0000)
libdl.so.2 => /lib64/ld-linux-x86-64.so.2 (0x7e42fa9e0000)
libpthread.so.0 => /lib64/ld-linux-x86-64.so.2 (0x7e42fa9e0000)
libc.so.6 => /lib64/ld-linux-x86-64.so.2 (0x7e42fa9e0000)
ld-linux-x86-64.so.2 => /lib/ld-linux-x86-64.so.2 (0x7e42f7ec5000)
Error relocating /lib/ld-linux-x86-64.so.2: unsupported relocation type 37
Error relocating /bin/envoy: __memcpy_chk: symbol not found
Error relocating /bin/envoy: __vsnprintf_chk: symbol not found
Error relocating /bin/envoy: __memset_chk: symbol not found
Error relocating /bin/envoy: __longjmp_chk: symbol not found
Error relocating /bin/envoy: __strncpy_chk: symbol not found
Error relocating /bin/envoy: __strcpy_chk: symbol not found
Error relocating /bin/envoy: __fdelt_chk: symbol not found
Error relocating /bin/envoy: fcntl64: symbol not found
Error relocating /bin/envoy: __memmove_chk: symbol not found
Error relocating /bin/envoy: __cxa_thread_atexit_impl: symbol not found
Error relocating /bin/envoy: __strftime_l: symbol not found
command terminated with exit code 127