Struct oci_spec::runtime::SpecBuilder
source · pub struct SpecBuilder { /* private fields */ }
Expand description
Builder for Spec
.
Implementations§
source§impl SpecBuilder
impl SpecBuilder
sourcepub fn version<VALUE: Into<String>>(self, value: VALUE) -> Self
pub fn version<VALUE: Into<String>>(self, value: VALUE) -> Self
MUST be in SemVer v2.0.0 format and specifies the version of the Open Container Initiative Runtime Specification with which the bundle complies. The Open Container Initiative Runtime Specification follows semantic versioning and retains forward and backward compatibility within major versions. For example, if a configuration is compliant with version 1.1 of this specification, it is compatible with all runtimes that support any 1.1 or later release of this specification, but is not compatible with a runtime that supports 1.0 and not 1.1.
sourcepub fn root<VALUE: Into<Root>>(self, value: VALUE) -> Self
pub fn root<VALUE: Into<Root>>(self, value: VALUE) -> Self
Specifies the container’s root filesystem. On Windows, for Windows Server Containers, this field is REQUIRED. For Hyper-V Containers, this field MUST NOT be set.
On all other platforms, this field is REQUIRED.
sourcepub fn mounts<VALUE: Into<Vec<Mount>>>(self, value: VALUE) -> Self
pub fn mounts<VALUE: Into<Vec<Mount>>>(self, value: VALUE) -> Self
Specifies additional mounts beyond root
. The runtime MUST mount
entries in the listed order.
For Linux, the parameters are as documented in
mount(2)
system call man page. For
Solaris, the mount entry corresponds to the ‘fs’ resource in the
zonecfg(1M)
man page.
sourcepub fn process<VALUE: Into<Process>>(self, value: VALUE) -> Self
pub fn process<VALUE: Into<Process>>(self, value: VALUE) -> Self
Specifies the container process. This property is REQUIRED when
start
is
called.
sourcepub fn hostname<VALUE: Into<String>>(self, value: VALUE) -> Self
pub fn hostname<VALUE: Into<String>>(self, value: VALUE) -> Self
Specifies the container’s hostname as seen by processes running inside the container. On Linux, for example, this will change the hostname in the container UTS namespace. Depending on your namespace configuration, the container UTS namespace may be the runtime UTS namespace.
sourcepub fn domainname<VALUE: Into<String>>(self, value: VALUE) -> Self
pub fn domainname<VALUE: Into<String>>(self, value: VALUE) -> Self
Specifies the container’s domainame as seen by processes running inside the container. On Linux, for example, this will change the domainame in the container UTS namespace. Depending on your namespace configuration, the container UTS namespace may be the runtime UTS namespace.
sourcepub fn hooks<VALUE: Into<Hooks>>(self, value: VALUE) -> Self
pub fn hooks<VALUE: Into<Hooks>>(self, value: VALUE) -> Self
Hooks allow users to specify programs to run before or after various lifecycle events. Hooks MUST be called in the listed order. The state of the container MUST be passed to hooks over stdin so that they may do work appropriate to the current state of the container.
sourcepub fn annotations<VALUE: Into<HashMap<String, String>>>(
self,
value: VALUE,
) -> Self
pub fn annotations<VALUE: Into<HashMap<String, String>>>( self, value: VALUE, ) -> Self
Annotations contains arbitrary metadata for the container. This information MAY be structured or unstructured. Annotations MUST be a key-value map. If there are no annotations then this property MAY either be absent or an empty map.
Keys MUST be strings. Keys MUST NOT be an empty string. Keys SHOULD be named using a reverse domain notation - e.g. com.example.myKey. Keys using the org.opencontainers namespace are reserved and MUST NOT be used by subsequent specifications. Runtimes MUST handle unknown annotation keys like any other unknown property.
Values MUST be strings. Values MAY be an empty string.
sourcepub fn linux<VALUE: Into<Linux>>(self, value: VALUE) -> Self
pub fn linux<VALUE: Into<Linux>>(self, value: VALUE) -> Self
Linux is platform-specific configuration for Linux based containers.
sourcepub fn solaris<VALUE: Into<Solaris>>(self, value: VALUE) -> Self
pub fn solaris<VALUE: Into<Solaris>>(self, value: VALUE) -> Self
Solaris is platform-specific configuration for Solaris based containers.
sourcepub fn windows<VALUE: Into<Windows>>(self, value: VALUE) -> Self
pub fn windows<VALUE: Into<Windows>>(self, value: VALUE) -> Self
Windows is platform-specific configuration for Windows based containers.
sourcepub fn vm<VALUE: Into<VM>>(self, value: VALUE) -> Self
pub fn vm<VALUE: Into<VM>>(self, value: VALUE) -> Self
VM specifies configuration for Virtual Machine based containers.
sourcepub fn uid_mappings<VALUE: Into<Vec<LinuxIdMapping>>>(
self,
value: VALUE,
) -> Self
pub fn uid_mappings<VALUE: Into<Vec<LinuxIdMapping>>>( self, value: VALUE, ) -> Self
UID mappings used for changing file owners w/o calling chown, fs should support it. Every mount point could have its own mapping.
sourcepub fn gid_mappings<VALUE: Into<Vec<LinuxIdMapping>>>(
self,
value: VALUE,
) -> Self
pub fn gid_mappings<VALUE: Into<Vec<LinuxIdMapping>>>( self, value: VALUE, ) -> Self
GID mappings used for changing file owners w/o calling chown, fs should support it. Every mount point could have its own mapping.