Skip to content

Commit bdc847f

Browse files
committed
Remove deprecated WithCDIDevices in oci spec opts
This function has been moved to prevent an unintended dependency on CDI. Signed-off-by: Derek McGowan <[email protected]>
1 parent e20f7f4 commit bdc847f

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

pkg/oci/spec_opts.go

-11
Original file line numberDiff line numberDiff line change
@@ -1642,14 +1642,3 @@ func WithWindowsNetworkNamespace(ns string) SpecOpts {
16421642
return nil
16431643
}
16441644
}
1645-
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.
1651-
func WithCDIDevices(devices ...string) SpecOpts {
1652-
return func(ctx context.Context, _ Client, c *containers.Container, s *Spec) error {
1653-
return errors.New("must use cdi package for CDI device injection")
1654-
}
1655-
}

0 commit comments

Comments
 (0)