We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a01750d + 4b3974c commit 5df93a0Copy full SHA for 5df93a0
1 file changed
pkg/config/config_unix.go
@@ -19,6 +19,7 @@
19
package config
20
21
import (
22
+ "github.com/BurntSushi/toml"
23
"github.com/containerd/containerd"
24
"github.com/containerd/cri/pkg/streaming"
25
)
@@ -38,7 +39,8 @@ func DefaultConfig() PluginConfig {
38
39
NoPivot: false,
40
Runtimes: map[string]Runtime{
41
"runc": {
- Type: "io.containerd.runc.v2",
42
+ Type: "io.containerd.runc.v2",
43
+ Options: new(toml.Primitive),
44
},
45
46
0 commit comments