Uh oh!
There was an error while loading. Please reload this page.
runtime-spec: bump to v1.3.0, fixup for backward incompatible linux PIDs limit type change . - #795
Conversation
1227392 to
cbbb466CompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
aojea
commented
Nov 4, 2025
ping @cyphar for guidance, since was the author of opencontainers/runtime-spec@869b2d5 |
Uh oh!
There was an error while loading. Please reload this page.
cbbb466 to
4b5fec9Compare
marquiz
left a comment
There was a problem hiding this comment.
One small nit, otherwise looks good to me.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
kolyshkin
left a comment
There was a problem hiding this comment.
Let me bump golangci-lint in a separate PR, as it will be faster than commenting here.
kolyshkin
commented
Nov 6, 2025
golangci-lint bump is at #797, PTAL |
4b5fec9 to
58c534dComparekolyshkin
commented
Nov 11, 2025
Bump runtime-spec to v1.3.0. Unfortunately there is a backward incompatible change there switching the Linux PID limit from int64 to *int64. Update generate/generate.go accordingly. Also, add a constant UnlimitedPidsLimit with the correct PID limit indicating "unlimited". Signed-off-by: Krisztian Litkey <krisztian.litkey@intel.com>
Signed-off-by: Krisztian Litkey <krisztian.litkey@intel.com>
Signed-off-by: Krisztian Litkey <krisztian.litkey@intel.com>
35dc18d to
3c27840Compareklihub
commented
Nov 11, 2025
@kolyshkin Rebased on latest master/HEAD. |
klihub
commented
Nov 11, 2025
ping @opencontainers/runtime-tools-maintainers |
klihub
commented
Nov 11, 2025
Uh oh!
There was an error while loading. Please reload this page.
kolyshkin
commented
Nov 14, 2025
If there's anything else that needs to be done, let's do this as a followup. |
This PR bumps our opencontainers runtime-spec dependency to the latest tagged v1.3.0.
Unfortunately v1.3.0 brings a backward incompatible change, switching the Linux PID limit from int64 to *int64. Make corresponding changes in generate/generate.go. Also, add an
UnlimitedPidsLimit = -1const to codify what is the correct Limit setting for unlimited PIDs.Note: This PR is stacked on #797, a separate PR to bump golangci-lint to v2 and fix existing linter issues.