Skip to content

Commit e86a068

Browse files
committed
Fix stress test for image config opt requirements
Signed-off-by: Michael Crosby <[email protected]>
1 parent d725ebe commit e86a068

File tree

3 files changed

+8
-35
lines changed

3 files changed

+8
-35
lines changed

cmd/containerd-stress/exec_worker.go

+7-8
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ package main
1818

1919
import (
2020
"context"
21-
"path/filepath"
2221
"strings"
2322
"syscall"
2423
"time"
@@ -39,14 +38,9 @@ func (w *execWorker) exec(ctx, tctx context.Context) {
3938
w.wg.Done()
4039
logrus.Infof("worker %d finished", w.id)
4140
}()
42-
// create and start the exec container
43-
w.spec.Linux.CgroupsPath = filepath.Join("/", "stress", "exec-container")
44-
w.spec.Process.Args = []string{
45-
"sleep", "30d",
46-
}
4741
c, err := w.client.NewContainer(ctx, "exec-container",
4842
containerd.WithNewSnapshot("exec-container", w.image),
49-
containerd.WithSpec(w.spec, oci.WithUsername("games")),
43+
containerd.WithNewSpec(oci.WithImageConfig(w.image), oci.WithUsername("games"), oci.WithProcessArgs("sleep", "30d")),
5044
)
5145
if err != nil {
5246
logrus.WithError(err).Error("create exec container")
@@ -66,8 +60,13 @@ func (w *execWorker) exec(ctx, tctx context.Context) {
6660
logrus.WithError(err).Error("wait exec container's task")
6761
return
6862
}
63+
spec, err := c.Spec(ctx)
64+
if err != nil {
65+
logrus.WithError(err).Error("failed to get spec")
66+
return
67+
}
6968

70-
pspec := w.spec.Process
69+
pspec := spec.Process
7170
pspec.Args = []string{"true"}
7271

7372
for {

cmd/containerd-stress/main.go

-22
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ import (
2929
"time"
3030

3131
"github.com/containerd/containerd"
32-
"github.com/containerd/containerd/containers"
3332
"github.com/containerd/containerd/namespaces"
34-
"github.com/containerd/containerd/oci"
3533
metrics "github.com/docker/go-metrics"
3634
"github.com/sirupsen/logrus"
3735
"github.com/urfave/cli"
@@ -227,7 +225,6 @@ func test(c config) error {
227225
if err != nil {
228226
return err
229227
}
230-
logrus.Info("generating spec from image")
231228
tctx, cancel := context.WithTimeout(ctx, c.Duration)
232229
go func() {
233230
s := make(chan os.Signal, 1)
@@ -241,26 +238,16 @@ func test(c config) error {
241238
r = &run{}
242239
)
243240
logrus.Info("starting stress test run...")
244-
args := oci.WithProcessArgs("true")
245241
v, err := client.Version(ctx)
246242
if err != nil {
247243
return err
248244
}
249245
// create the workers along with their spec
250246
for i := 0; i < c.Concurrency; i++ {
251247
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-
}
260248
w := &worker{
261249
id: i,
262250
wg: &wg,
263-
spec: spec,
264251
image: image,
265252
client: client,
266253
commit: v.Revision,
@@ -270,19 +257,10 @@ func test(c config) error {
270257
var exec *execWorker
271258
if c.Exec {
272259
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-
}
281260
exec = &execWorker{
282261
worker: worker{
283262
id: c.Concurrency,
284263
wg: &wg,
285-
spec: spec,
286264
image: image,
287265
client: client,
288266
commit: v.Revision,

cmd/containerd-stress/worker.go

+1-5
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,13 @@ package main
1919
import (
2020
"context"
2121
"fmt"
22-
"path/filepath"
2322
"strings"
2423
"sync"
2524
"time"
2625

2726
"github.com/containerd/containerd"
2827
"github.com/containerd/containerd/cio"
2928
"github.com/containerd/containerd/oci"
30-
specs "github.com/opencontainers/runtime-spec/specs-go"
3129
"github.com/sirupsen/logrus"
3230
)
3331

@@ -39,7 +37,6 @@ type worker struct {
3937

4038
client *containerd.Client
4139
image containerd.Image
42-
spec *specs.Spec
4340
commit string
4441
}
4542

@@ -76,10 +73,9 @@ func (w *worker) run(ctx, tctx context.Context) {
7673

7774
func (w *worker) runContainer(ctx context.Context, id string) (err error) {
7875
// fix up cgroups path for a default config
79-
w.spec.Linux.CgroupsPath = filepath.Join("/", "stress", id)
8076
c, err := w.client.NewContainer(ctx, id,
8177
containerd.WithNewSnapshot(id, w.image),
82-
containerd.WithSpec(w.spec, oci.WithUsername("games")),
78+
containerd.WithNewSpec(oci.WithImageConfig(w.image), oci.WithUsername("games"), oci.WithProcessArgs("true")),
8379
)
8480
if err != nil {
8581
return err

0 commit comments

Comments
 (0)