@@ -21,17 +21,21 @@ The explanation and default value of each configuration item are as follows:
21
21
# stats_collect_period is the period (in seconds) of snapshots stats collection.
22
22
stats_collect_period = 10
23
23
24
- # systemd_cgroup enables systemd cgroup support.
24
+ # systemd_cgroup enables systemd cgroup support. This only works for runtime
25
+ # type "io.containerd.runtime.v1.linux".
26
+ # DEPRECATED: use Runtime.Options for runtime specific config for shim v2 runtimes.
27
+ # For runtime "io.containerd.runc.v1", use the option `SystemdCgroup`.
25
28
systemd_cgroup = false
26
29
27
- # enable_tls_streaming enables the TLS streaming support.
30
+ # enable_tls_streaming enables the TLS streaming support.
28
31
# It generates a self-sign certificate unless the following x509_key_pair_streaming are both set.
29
32
enable_tls_streaming = false
30
-
33
+
31
34
# "plugins.cri.x509_key_pair_streaming" contains a x509 valid key pair to stream with tls.
32
35
[plugins .cri .x509_key_pair_streaming ]
33
36
# tls_cert_file is the filepath to the certificate paired with the "tls_key_file"
34
37
tls_cert_file = " "
38
+
35
39
# tls_key_file is the filepath to the private key paired with the "tls_cert_file"
36
40
tls_key_file = " "
37
41
@@ -46,7 +50,10 @@ The explanation and default value of each configuration item are as follows:
46
50
# snapshotter is the snapshotter used by containerd.
47
51
snapshotter = " overlayfs"
48
52
49
- # no_pivot disables pivot-root (linux only), required when running a container in a RamDisk with runc
53
+ # no_pivot disables pivot-root (linux only), required when running a container in a RamDisk with runc.
54
+ # This only works for runtime type "io.containerd.runtime.v1.linux".
55
+ # DEPRECATED: use Runtime.Options for runtime specific config for shim v2 runtimes.
56
+ # For runtime "io.containerd.runc.v1", use the option `NoPivotRoot`.
50
57
no_pivot = false
51
58
52
59
# "plugins.cri.containerd.default_runtime" is the runtime to use in containerd.
@@ -55,17 +62,41 @@ The explanation and default value of each configuration item are as follows:
55
62
runtime_type = " io.containerd.runtime.v1.linux"
56
63
57
64
# runtime_engine is the name of the runtime engine used by containerd.
65
+ # This only works for runtime type "io.containerd.runtime.v1.linux".
66
+ # DEPRECATED: use Runtime.Options for runtime specific config for shim v2 runtimes.
67
+ # For runtime "io.containerd.runc.v1", use the option `BinaryName`.
58
68
runtime_engine = " "
59
69
60
70
# runtime_root is the directory used by containerd for runtime state.
71
+ # This only works for runtime type "io.containerd.runtime.v1.linux".
72
+ # DEPRECATED: use Runtime.Options for runtime specific config for shim v2 runtimes.
73
+ # For runtime "io.containerd.runc.v1", use the option `Root`.
61
74
runtime_root = " "
62
75
63
- # "plugins.cri.containerd.untrusted_workload_runtime" is a runtime to run untrusted workloads on it.
76
+ # "plugins.cri.containerd.default_runtime.options" is options specific to
77
+ # the default runtime. The options type for "io.containerd.runtime.v1.linux" is:
78
+ # https://github.com/containerd/containerd/blob/v1.2.0-rc.1/runtime/linux/runctypes/runc.pb.go#L40
79
+ # NOTE: when `options` is specified, all related deprecated options will
80
+ # be ignored, including `systemd_cgroup`, `no_pivot`, `runtime_engine`
81
+ # and `runtime_root`.
82
+ [plugins .cri .containerd .default_runtime .options ]
83
+ # Runtime is the binary name of the runtime.
84
+ Runtime = " "
85
+
86
+ # RuntimeRoot is the root directory of the runtime.
87
+ RuntimeRoot = " "
88
+
89
+ # CriuPath is the criu binary path.
90
+ CriuPath = " "
64
91
92
+ # SystemdCgroup enables systemd cgroups.
93
+ SystemdCgroup = false
94
+
95
+ # "plugins.cri.containerd.untrusted_workload_runtime" is a runtime to run untrusted workloads on it.
65
96
# DEPRECATED: use plugins.cri.runtimes instead. If provided, this runtime is mapped to the
66
- # runtime handler named 'untrusted'. It is a configuration error to provide both the (now
67
- # deprecated) UntrustedWorkloadRuntime and a handler in the Runtimes handler map (below) for
68
- # 'untrusted' workloads at the same time. Please provide one or the other.
97
+ # runtime handler named 'untrusted'. It is a configuration error to provide both the (now
98
+ # deprecated) UntrustedWorkloadRuntime and a handler in the Runtimes handler map (below) for
99
+ # 'untrusted' workloads at the same time. Please provide one or the other.
69
100
[plugins .cri .containerd .untrusted_workload_runtime ]
70
101
# runtime_type is the runtime type to use in containerd e.g. io.containerd.runtime.v1.linux
71
102
runtime_type = " "
@@ -76,18 +107,43 @@ The explanation and default value of each configuration item are as follows:
76
107
# runtime_root is the directory used by containerd for runtime state.
77
108
runtime_root = " "
78
109
79
- # plugins.cri.containerd.runtimes is a map from CRI RuntimeHandler strings, which specify types
80
- # of runtime configurations, to the matching configurations. In this example,
81
- # 'runtime_handler_name ' is the RuntimeHandler string to match.
82
- [plugins .cri .containerd .runtimes .runtime_handler_name ]
110
+ # plugins.cri.containerd.runtimes is a map from CRI RuntimeHandler strings, which specify types
111
+ # of runtime configurations, to the matching configurations. In this example,
112
+ # 'runc ' is the RuntimeHandler string to match.
113
+ [plugins .cri .containerd .runtimes .runc ]
83
114
# runtime_type is the runtime type to use in containerd e.g. io.containerd.runtime.v1.linux
84
- runtime_type = " "
115
+ runtime_type = " io.containerd.runc.v1 "
85
116
86
- # runtime_engine is the name of the runtime engine used by containerd.
87
- runtime_engine = " "
117
+ # "plugins.cri.containerd.runtimes.runc.options" is options specific to
118
+ # "io.containerd.runc.v1". Its corresponding options type is:
119
+ # https://github.com/containerd/containerd/blob/v1.2.0-rc.1/runtime/v2/runc/options/oci.pb.go#L39.
120
+ [plugins .cri .containerd .runtimes .runc .options ]
121
+ # NoPivotRoot disables pivot root when creating a container.
122
+ NoPivotRoot = false
88
123
89
- # runtime_root is the directory used by containerd for runtime state.
90
- runtime_root = " "
124
+ # NoNewKeyring disables new keyring for the container.
125
+ NoNewKeyring = false
126
+
127
+ # ShimCgroup places the shim in a cgroup.
128
+ ShimCgroup = " "
129
+
130
+ # IoUid sets the I/O's pipes uid.
131
+ IoUid = 0
132
+
133
+ # IoGid sets the I/O's pipes gid.
134
+ IoGid = 0
135
+
136
+ # BinaryName is the binary name of the runc binary.
137
+ BinaryName = " "
138
+
139
+ # Root is the runc root directory.
140
+ Root = " "
141
+
142
+ # CriuPath is the criu binary path.
143
+ CriuPath = " "
144
+
145
+ # SystemdCgroup enables systemd cgroups.
146
+ SystemdCgroup = false
91
147
92
148
# "plugins.cri.cni" contains config related to cni
93
149
[plugins .cri .cni ]
0 commit comments