show runc options tag

Signed-off-by: Mike Brown <brownwm@us.ibm.com>
This commit is contained in:
Mike Brown 2020-07-10 16:33:36 -05:00
parent 8fb244a65b
commit 4b3974c4e9

View File

@ -19,6 +19,7 @@
package config package config
import ( import (
"github.com/BurntSushi/toml"
"github.com/containerd/containerd" "github.com/containerd/containerd"
"github.com/containerd/cri/pkg/streaming" "github.com/containerd/cri/pkg/streaming"
) )
@ -39,6 +40,7 @@ func DefaultConfig() PluginConfig {
Runtimes: map[string]Runtime{ Runtimes: map[string]Runtime{
"runc": { "runc": {
Type: "io.containerd.runc.v2", Type: "io.containerd.runc.v2",
Options: new(toml.Primitive),
}, },
}, },
}, },