ContainerdInfoNamespaces

@Serializable
data class ContainerdInfoNamespaces(val containers: String? = "moby", val plugins: String? = "plugins.moby")

The namespaces that the daemon uses for running containers and plugins in containerd. These namespaces can be configured in the daemon configuration, and are considered to be used exclusively by the daemon, Tampering with the containerd instance may cause unexpected behavior. As these namespaces are considered to be exclusively accessed by the daemon, it is not recommended to change these values, or to change them to a value that is used by other systems, such as cri-containerd.

Parameters

containers

The default containerd namespace used for containers managed by the daemon. The default namespace for containers is \"moby\", but will be suffixed with the <uid>.<gid> of the remapped root if user-namespaces are enabled and the containerd image-store is used.

plugins

The default containerd namespace used for plugins managed by the daemon. The default namespace for plugins is \"plugins.moby\", but will be suffixed with the <uid>.<gid> of the remapped root if user-namespaces are enabled and the containerd image-store is used.

Constructors

Link copied to clipboard
constructor(containers: String? = "moby", plugins: String? = "plugins.moby")

Properties

Link copied to clipboard
@SerialName(value = "Containers")
val containers: String?
Link copied to clipboard
@SerialName(value = "Plugins")
val plugins: String?