Call start in containerd

This fixes a sync issue when the containerd api returns after a
container has started.  It fixes it by calling the runtime start inside
containerd after the oom handler has been setup.

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby 2016-06-24 12:02:53 -07:00
parent 14e79494da
commit 654c537d38
6 changed files with 54 additions and 30 deletions

View file

@ -2,6 +2,7 @@ package main
import (
"fmt"
"os"
"path/filepath"
"syscall"
"time"
@ -326,6 +327,9 @@ func (cs *ContainerdSuite) TestOOM(t *check.C) {
spec.Linux.Resources.Memory = &ocs.Memory{
Limit: &limit,
}
if swapEnabled() {
spec.Linux.Resources.Memory.Swap = &limit
}
}); err != nil {
t.Fatal(err)
}
@ -362,7 +366,7 @@ func (cs *ContainerdSuite) TestOOM(t *check.C) {
evt.Timestamp = e.Timestamp
t.Assert(*e, checker.Equals, evt)
case <-time.After(60 * time.Second):
t.Fatal("Container took more than 10 seconds to terminate")
t.Fatalf("Container took more than 60 seconds to %s", evt.Type)
}
}
}
@ -479,3 +483,8 @@ func (cs *ContainerdSuite) TestRestart(t *check.C) {
t.Assert(containers[i].Status, checker.Equals, "running")
}
}
func swapEnabled() bool {
_, err := os.Stat("/sys/fs/cgroup/memory/memory.memsw.limit_in_bytes")
return err == nil
}