Results 604 comments of Tim Gross

Hi @huwany! There's not currently a way to specify this, but it seems like a reasonable feature request. Something that may be interesting for us to look into is whether...

@anth0d I _think_ we've got the CI issue fixed. Would you mind rebasing on `main` to verify that?

Hi @wusikijeronii to follow up on those questions, I think we're looking for: * Which version of cgroups are you running? You can get this by `mount | grep cgroup`...

> For me this works with Nomad 1.7.x with ubuntu 22.04 but fails with ubuntu 20.04 Thanks @nickwales. Given the segfault, I'm having a strong suspicion this is a build...

So here's what I'm seeing with `ldd`, which shows that Nomad has symbols that are looking for glibc 2.34. ``` $ ./nomad version Nomad v1.7.6 BuildDate 2024-03-12T07:27:36Z Revision 594fedbfbc4f0e532b65e8a69b28ff9403eb822e $...

@nickwales reported that Ubuntu 20.04 was also seeing the error, and I checked libc there: ``` # /lib/x86_64-linux-gnu/libc-2.31.so GNU C Library (Ubuntu GLIBC 2.31-0ubuntu9.14) stable release version 2.31. Copyright (C)...

:facepalm: The build/linking stuff is a total red herring! From my previous comment: ``` /lib/x86_64-linux-gnu/libresolv.so.2: libc.so.6 (GLIBC_2.14) => /lib/x86_64-linux-gnu/libc.so.6 libc.so.6 (GLIBC_2.4) => /lib/x86_64-linux-gnu/libc.so.6 libc.so.6 (GLIBC_2.34) => /lib/x86_64-linux-gnu/libc.so.6 ... ``` The...

Ok, I've been able to reproduce on Ubuntu 20.04 and I did some `strace` on it to try to figure out what's going wrong. The following trace is for the...

> After this PR, you need to add unix.Prctl(unix.PR_SET_CHILD_SUBREAPER, 1, 0, 0, 0) in your system to reap all the child processes, or you will can't know whether the container...

I was recently looking in this area of the code base and it's a bit tricky of a situation. It takes a certain amount of time for the agent to...