Merge pull request #1531 from mikebrow/nit-for-default-config

show runc options tag
This commit is contained in:
Mike Brown 2020-07-11 11:47:00 -05:00 committed by GitHub
commit 5df93a038a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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),
}, },
}, },
}, },