cri.toml

1 min read · Beginner


ℹ️
Note: This file is for the legacy protect-cri system. Since v1.12 this has been replaced by a cri-shim that allows containerd to handle these configurations natively. If you are not using the legacy system, you can safely ignore these configurations.

cri.toml configures Edera CRI (Container Runtime Interface) implementation. It lives at /var/lib/edera/protect/cri.toml.

CNI

The [cni] section controls how Edera discovers and uses CNI plugins and network configuration.

[cni]
bin-dirs = ["/opt/cni/bin"]
conf-dir = "/etc/cni/net.d"

Options

OptionTypeDefaultDescription
bin-dirsarray of strings["/opt/cni/bin"]Directories to search for CNI plugin binaries.
conf-dirstring"/etc/cni/net.d"Directory containing CNI network configuration files.

bin-dirs

List of directories where Edera looks for CNI plugin binaries. Directories are searched in order.

bin-dirs = ["/opt/cni/bin", "/usr/lib/cni"]

conf-dir

Directory containing CNI network configuration files (.conf, .conflist, or .json). Edera reads network configuration from this path at runtime.

conf-dir = "/etc/cni/net.d"

See also

Last updated on