You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As part of a version bump in our project (https://github.com/canonical/lxd) from tags.cncf.io/container-device-interface v0.8.0 to tags.cncf.io/container-device-interface v1.0.0 , we also had to update our go deps with an updated github.com/NVIDIA/nvidia-container-toolkit that would properly work with this change. I looked a bit and I found this commit that was part of this PR.
I naively did go get github.com/NVIDIA/nvidia-container-toolkit@3df59b955a77edbc2f261533f14e61858ea4687d to receive the updated dependency (our go build works after that) but I found out that the resolved go.mod deps was:
We were previously using v1.17.4 . Why this change appears in 1.17.1-... and not in a newer version like v1.17.5 ?
The text was updated successfully, but these errors were encountered:
gabrielmougard
changed the title
bumping tags.cncf.io/container-device-interface from v0.8.0 to v1.0.0 commit get
bumping tags.cncf.io/container-device-interface from v0.8.0 to v1.0.0 downgrade go version of nvidia-container-toolkit
Mar 14, 2025
@gabrielmougard I believe this is a sideeffect of how go generates pseudo versions. The v1.17.1 tag existed on the main branch at the time, and we have since created a release-1.17 branch for subsequent tags.
We did not want to "polute" the v1.17.5 release with the CDI update since it happened late in our release cycle.
As part of a version bump in our project (https://github.com/canonical/lxd) from
tags.cncf.io/container-device-interface v0.8.0
totags.cncf.io/container-device-interface v1.0.0
, we also had to update our go deps with an updatedgithub.com/NVIDIA/nvidia-container-toolkit
that would properly work with this change. I looked a bit and I found this commit that was part of this PR.I naively did
go get github.com/NVIDIA/nvidia-container-toolkit@3df59b955a77edbc2f261533f14e61858ea4687d
to receive the updated dependency (our go build works after that) but I found out that the resolvedgo.mod
deps was:github.com/NVIDIA/nvidia-container-toolkit v1.17.1-0.20250310084538-3df59b955a77
We were previously using
v1.17.4
. Why this change appears in1.17.1-...
and not in a newer version likev1.17.5
?The text was updated successfully, but these errors were encountered: