release: Ubuntu 18.04 -> 20.04 (glibc 2.27 -> 2.31)#8021
Merged
samuelkarp merged 1 commit intocontainerd:mainfrom Jan 29, 2023
Merged
release: Ubuntu 18.04 -> 20.04 (glibc 2.27 -> 2.31)#8021samuelkarp merged 1 commit intocontainerd:mainfrom
samuelkarp merged 1 commit intocontainerd:mainfrom
Conversation
Ubuntu 18.04 will reach its End of Standard Support in April 2023: https://wiki.ubuntu.com/Releases By updating Ubuntu from 18.04 to 20.04, the dynamically-linked glibc version is bumped up from 2.27 to 2.31. The dynamically linked containerd binary still seems to be compatible with CentOS 7 (glibc 2.17). The runc binary in the `cri-containerd(-cni)-<VERSION>-linux-<ARCH>.tar.gz` bundle no longer works on CentOS 7, though, but this is acceptable, as the `cri-containerd(-cni)` bundle has been deprecated since containerd 1.6. ``` $ ldd /usr/local/sbin/runc linux-vdso.so.1 => (0x00007fffee9c4000) libpthread.so.0 => /lib64/libpthread.so.0 (0x00007eff48721000) libseccomp.so.2 => /lib64/libseccomp.so.2 (0x00007eff484e0000) libc.so.6 => /lib64/libc.so.6 (0x00007eff48112000) /lib64/ld-linux-x86-64.so.2 (0x00007eff492cb000) $ /usr/local/sbin/runc /usr/local/sbin/runc: symbol lookup error: /usr/local/sbin/runc: undefined symbol: seccomp_notify_respond ``` Fix issue 7961 Signed-off-by: Akihiro Suda <[email protected]>
fuweid
approved these changes
Jan 29, 2023
dmcgowan
approved these changes
Jan 29, 2023
samuelkarp
approved these changes
Jan 29, 2023
This was referenced Feb 25, 2023
This was referenced Mar 7, 2023
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Ubuntu 18.04 will reach its End of Standard Support in April 2023: https://wiki.ubuntu.com/Releases
By updating Ubuntu from 18.04 to 20.04, the dynamically-linked glibc version is bumped up from 2.27 to 2.31.
The dynamically linked containerd binary still seems to be compatible with CentOS 7 (glibc 2.17).
The runc binary in the
cri-containerd(-cni)-<VERSION>-linux-<ARCH>.tar.gzbundle no longer works on CentOS 7, though, but this is acceptable, as thecri-containerd(-cni)bundle has been deprecated since containerd 1.6.Fix #7961