@@ -93,7 +93,8 @@ grpc_max_recv_msg_size = 16777216
93
93
#]
94
94
95
95
# default_runtime is the _name_ of the OCI runtime to be used as the default.
96
- # The name is matched against the runtimes map below.
96
+ # The name is matched against the runtimes map below. If this value is changed,
97
+ # the corresponding existing entry from the runtimes map below will be ignored.
97
98
default_runtime = "runc"
98
99
99
100
# If true, the runtime will not use pivot_root, but instead use MS_MOVE.
@@ -241,12 +242,15 @@ gid_mappings = ""
241
242
# value is 30s, whereas lower values are not considered by CRI-O.
242
243
ctr_stop_timeout = 30
243
244
244
- # **DEPRECATED** this option is being replaced by manage_ns_lifecycle, which is described below.
245
- # manage_network_ns_lifecycle = false
246
-
247
245
# manage_ns_lifecycle determines whether we pin and remove namespaces
248
246
# and manage their lifecycle
249
- manage_ns_lifecycle = false
247
+ manage_ns_lifecycle = true
248
+
249
+ # drop_infra_ctr determines whether CRI-O drops the infra container
250
+ # when a pod does not have a private PID namespace, and does not use
251
+ # a kernel separating runtime (like kata).
252
+ # It requires manage_ns_lifecycle to be true.
253
+ drop_infra_ctr = false
250
254
251
255
# The directory where the state of the managed namespaces gets tracked.
252
256
# Only used when manage_ns_lifecycle is true.
@@ -283,6 +287,10 @@ runtime_type = "oci"
283
287
runtime_root = "/run/runc"
284
288
285
289
290
+ # crun is a fast and lightweight fully featured OCI runtime and C library for
291
+ # running containers
292
+ #[crio.runtime.runtimes.crun]
293
+
286
294
# Kata Containers is an OCI runtime, where containers are run inside lightweight
287
295
# VMs. Kata provides additional isolation towards the host, minimizing the host attack
288
296
# surface and mitigating the consequences of containers breakout.
@@ -351,6 +359,8 @@ image_volumes = "mkdir"
351
359
#registries = [
352
360
# ]
353
361
362
+ # Temporary directory to use for storing big files
363
+ big_files_temporary_dir = ""
354
364
355
365
# The crio.network table containers settings pertaining to the management of
356
366
# CNI plugins.
@@ -376,3 +386,6 @@ enable_metrics = false
376
386
377
387
# The port on which the metrics server will listen.
378
388
metrics_port = 9090
389
+
390
+ # Local socket path to bind the metrics server to
391
+ metrics_socket = ""
0 commit comments