@@ -28,18 +28,17 @@ import (
28
28
"strconv"
29
29
"strings"
30
30
31
- "github.com/containerd/containerd/v2/core/containers"
32
- "github.com/containerd/containerd/v2/core/content"
33
- "github.com/containerd/containerd/v2/core/images"
34
- "github.com/containerd/containerd/v2/core/mount"
35
- "github.com/containerd/containerd/v2/pkg/namespaces"
36
31
"github.com/containerd/continuity/fs"
37
- "github.com/containerd/log"
38
32
"github.com/containerd/platforms"
39
33
"github.com/moby/sys/user"
40
34
v1 "github.com/opencontainers/image-spec/specs-go/v1"
41
35
"github.com/opencontainers/runtime-spec/specs-go"
42
- "tags.cncf.io/container-device-interface/pkg/cdi"
36
+
37
+ "github.com/containerd/containerd/v2/core/containers"
38
+ "github.com/containerd/containerd/v2/core/content"
39
+ "github.com/containerd/containerd/v2/core/images"
40
+ "github.com/containerd/containerd/v2/core/mount"
41
+ "github.com/containerd/containerd/v2/pkg/namespaces"
43
42
)
44
43
45
44
// SpecOpts sets spec specific information to a newly generated OCI spec
@@ -1644,30 +1643,13 @@ func WithWindowsNetworkNamespace(ns string) SpecOpts {
1644
1643
}
1645
1644
}
1646
1645
1647
- // WithCDIDevices injects the requested CDI devices into the OCI specification.
1646
+ // WithCDIDevices should be used from the cdi package. This version is used for
1647
+ // compatibility to point to the non-deprecated version but will return an error if used.
1648
+ // This function will be removed in 2.1.
1649
+ //
1650
+ // Deprecated: Use [github.com/containerd/containerd/v2/pkg/cdi.WithCDIDevices] instead.
1648
1651
func WithCDIDevices (devices ... string ) SpecOpts {
1649
1652
return func (ctx context.Context , _ Client , c * containers.Container , s * Spec ) error {
1650
- if len (devices ) == 0 {
1651
- return nil
1652
- }
1653
-
1654
- if err := cdi .Refresh (); err != nil {
1655
- // We don't consider registry refresh failure a fatal error.
1656
- // For instance, a dynamically generated invalid CDI Spec file for
1657
- // any particular vendor shouldn't prevent injection of devices of
1658
- // different vendors. CDI itself knows better and it will fail the
1659
- // injection if necessary.
1660
- log .G (ctx ).Warnf ("CDI registry refresh failed: %v" , err )
1661
- }
1662
-
1663
- if _ , err := cdi .InjectDevices (s , devices ... ); err != nil {
1664
- return fmt .Errorf ("CDI device injection failed: %w" , err )
1665
- }
1666
-
1667
- // One crucial thing to keep in mind is that CDI device injection
1668
- // might add OCI Spec environment variables, hooks, and mounts as
1669
- // well. Therefore it is important that none of the corresponding
1670
- // OCI Spec fields are reset up in the call stack once we return.
1671
- return nil
1653
+ return errors .New ("must use cdi package for CDI device injection" )
1672
1654
}
1673
1655
}
0 commit comments