@@ -29,9 +29,7 @@ import (
29
29
"time"
30
30
31
31
"github.com/containerd/containerd"
32
- "github.com/containerd/containerd/containers"
33
32
"github.com/containerd/containerd/namespaces"
34
- "github.com/containerd/containerd/oci"
35
33
metrics "github.com/docker/go-metrics"
36
34
"github.com/sirupsen/logrus"
37
35
"github.com/urfave/cli"
@@ -227,7 +225,6 @@ func test(c config) error {
227
225
if err != nil {
228
226
return err
229
227
}
230
- logrus .Info ("generating spec from image" )
231
228
tctx , cancel := context .WithTimeout (ctx , c .Duration )
232
229
go func () {
233
230
s := make (chan os.Signal , 1 )
@@ -241,26 +238,16 @@ func test(c config) error {
241
238
r = & run {}
242
239
)
243
240
logrus .Info ("starting stress test run..." )
244
- args := oci .WithProcessArgs ("true" )
245
241
v , err := client .Version (ctx )
246
242
if err != nil {
247
243
return err
248
244
}
249
245
// create the workers along with their spec
250
246
for i := 0 ; i < c .Concurrency ; i ++ {
251
247
wg .Add (1 )
252
- spec , err := oci .GenerateSpec (ctx , client ,
253
- & containers.Container {},
254
- oci .WithImageConfig (image ),
255
- args ,
256
- )
257
- if err != nil {
258
- return err
259
- }
260
248
w := & worker {
261
249
id : i ,
262
250
wg : & wg ,
263
- spec : spec ,
264
251
image : image ,
265
252
client : client ,
266
253
commit : v .Revision ,
@@ -270,19 +257,10 @@ func test(c config) error {
270
257
var exec * execWorker
271
258
if c .Exec {
272
259
wg .Add (1 )
273
- spec , err := oci .GenerateSpec (ctx , client ,
274
- & containers.Container {},
275
- oci .WithImageConfig (image ),
276
- args ,
277
- )
278
- if err != nil {
279
- return err
280
- }
281
260
exec = & execWorker {
282
261
worker : worker {
283
262
id : c .Concurrency ,
284
263
wg : & wg ,
285
- spec : spec ,
286
264
image : image ,
287
265
client : client ,
288
266
commit : v .Revision ,
0 commit comments