Why is this needed?
In some scenarios, need to reference the kubevirt-gpu-device-plugin code. If follow the current Go module configuration, an error will be reported during go get github.com/NVIDIA/kubevirt-gpu-device-plugin.
$ go get github.com/NVIDIA/kubevirt-gpu-device-plugin
go: downloading github.com/NVIDIA/kubevirt-gpu-device-plugin v1.3.1
go: github.com/NVIDIA/kubevirt-gpu-device-plugin@v1.3.1 requires go >= 1.23.0; switching to go1.23.6
go: github.com/NVIDIA/kubevirt-gpu-device-plugin@upgrade (v1.3.1) requires github.com/NVIDIA/kubevirt-gpu-device-plugin@v1.3.1: parsing go.mod:
module declares its path as: kubevirt-gpu-device-plugin
but was required as: github.com/NVIDIA/kubevirt-gpu-device-plugin
Proposal
Change the Go module from kubevirt-gpu-device-plugin to github.com/NVIDIA/kubevirt-gpu-device-plugin in the go.mod file.
Why is this needed?
In some scenarios, need to reference the kubevirt-gpu-device-plugin code. If follow the current Go module configuration, an error will be reported during go get
github.com/NVIDIA/kubevirt-gpu-device-plugin.Proposal
Change the Go module from kubevirt-gpu-device-plugin to github.com/NVIDIA/kubevirt-gpu-device-plugin in the go.mod file.