Skip to content

Commit 5df93a0

Browse files
authored
Merge pull request #1531 from mikebrow/nit-for-default-config
show runc options tag
2 parents a01750d + 4b3974c commit 5df93a0

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

pkg/config/config_unix.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
package config
2020

2121
import (
22+
"github.com/BurntSushi/toml"
2223
"github.com/containerd/containerd"
2324
"github.com/containerd/cri/pkg/streaming"
2425
)
@@ -38,7 +39,8 @@ func DefaultConfig() PluginConfig {
3839
NoPivot: false,
3940
Runtimes: map[string]Runtime{
4041
"runc": {
41-
Type: "io.containerd.runc.v2",
42+
Type: "io.containerd.runc.v2",
43+
Options: new(toml.Primitive),
4244
},
4345
},
4446
},

0 commit comments

Comments
 (0)