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
Using CDI in Kubernetes adds two new dependencies:
$ go mod why -m github.com/hashicorp/go-multierror
# github.com/hashicorp/go-multierror
k8s.io/kubernetes/pkg/kubelet/cm/dra
github.com/container-orchestrated-devices/container-device-interface/pkg/cdi
github.com/hashicorp/go-multierror
$ go mod why -m github.com/hashicorp/errwrap
# github.com/hashicorp/errwrap
k8s.io/kubernetes/pkg/kubelet/cm/dra
github.com/container-orchestrated-devices/container-device-interface/pkg/cdi
github.com/hashicorp/go-multierror
github.com/hashicorp/errwrap
Can those two dependencies be removed? Go natively has support for wrapping errors and combining multiple multiple errors into one can be implemented with custom code instead of dragging in a dependency.
The text was updated successfully, but these errors were encountered:
Using CDI in Kubernetes adds two new dependencies:
Can those two dependencies be removed? Go natively has support for wrapping errors and combining multiple multiple errors into one can be implemented with custom code instead of dragging in a dependency.
The text was updated successfully, but these errors were encountered: