Struct oci_spec::runtime::Spec

source ·
pub struct Spec { /* private fields */ }
Expand description

Base configuration for the container.

Implementations§

source§

impl Spec

source

pub fn version(&self) -> &String

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.

source

pub fn root(&self) -> &Option<Root>

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.

source

pub fn mounts(&self) -> &Option<Vec<Mount>>

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.

source

pub fn process(&self) -> &Option<Process>

Specifies the container process. This property is REQUIRED when start is called.

source

pub fn hostname(&self) -> &Option<String>

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.

source

pub fn domainname(&self) -> &Option<String>

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.

source

pub fn hooks(&self) -> &Option<Hooks>

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.

source

pub fn annotations(&self) -> &Option<HashMap<String, String>>

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.

source

pub fn linux(&self) -> &Option<Linux>

Linux is platform-specific configuration for Linux based containers.

source

pub fn solaris(&self) -> &Option<Solaris>

Solaris is platform-specific configuration for Solaris based containers.

source

pub fn windows(&self) -> &Option<Windows>

Windows is platform-specific configuration for Windows based containers.

source

pub fn vm(&self) -> &Option<VM>

VM specifies configuration for Virtual Machine based containers.

source

pub fn uid_mappings(&self) -> &Option<Vec<LinuxIdMapping>>

UID mappings used for changing file owners w/o calling chown, fs should support it. Every mount point could have its own mapping.

source

pub fn gid_mappings(&self) -> &Option<Vec<LinuxIdMapping>>

GID mappings used for changing file owners w/o calling chown, fs should support it. Every mount point could have its own mapping.

source§

impl Spec

source

pub fn set_version(&mut self, val: String) -> &mut 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.

source

pub fn set_root(&mut self, val: Option<Root>) -> &mut 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.

source

pub fn set_mounts(&mut self, val: Option<Vec<Mount>>) -> &mut 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.

source

pub fn set_process(&mut self, val: Option<Process>) -> &mut Self

Specifies the container process. This property is REQUIRED when start is called.

source

pub fn set_hostname(&mut self, val: Option<String>) -> &mut 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.

source

pub fn set_domainname(&mut self, val: Option<String>) -> &mut 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.

source

pub fn set_hooks(&mut self, val: Option<Hooks>) -> &mut 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.

source

pub fn set_annotations( &mut self, val: Option<HashMap<String, String>> ) -> &mut 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.

source

pub fn set_linux(&mut self, val: Option<Linux>) -> &mut Self

Linux is platform-specific configuration for Linux based containers.

source

pub fn set_solaris(&mut self, val: Option<Solaris>) -> &mut Self

Solaris is platform-specific configuration for Solaris based containers.

source

pub fn set_windows(&mut self, val: Option<Windows>) -> &mut Self

Windows is platform-specific configuration for Windows based containers.

source

pub fn set_vm(&mut self, val: Option<VM>) -> &mut Self

VM specifies configuration for Virtual Machine based containers.

source

pub fn set_uid_mappings( &mut self, val: Option<Vec<LinuxIdMapping>> ) -> &mut Self

UID mappings used for changing file owners w/o calling chown, fs should support it. Every mount point could have its own mapping.

source

pub fn set_gid_mappings( &mut self, val: Option<Vec<LinuxIdMapping>> ) -> &mut Self

GID mappings used for changing file owners w/o calling chown, fs should support it. Every mount point could have its own mapping.

source§

impl Spec

source

pub fn load<P: AsRef<Path>>(path: P) -> Result<Self>

Load a new Spec from the provided JSON file path.

§Errors

This function will return an OciSpecError::Io if the spec does not exist or an OciSpecError::SerDe if it is invalid.

§Example
use oci_spec::runtime::Spec;

let spec = Spec::load("config.json").unwrap();
source

pub fn save<P: AsRef<Path>>(&self, path: P) -> Result<()>

Save a Spec to the provided JSON file path.

§Errors

This function will return an OciSpecError::Io if a file cannot be created at the provided path or an OciSpecError::SerDe if the spec cannot be serialized.

§Example
use oci_spec::runtime::Spec;

let mut spec = Spec::load("config.json").unwrap();
spec.save("my_config.json").unwrap();
source

pub fn canonicalize_rootfs<P: AsRef<Path>>(&mut self, bundle: P) -> Result<()>

Canonicalize the root.path of the Spec for the provided bundle.

source

pub fn rootless(uid: u32, gid: u32) -> Self

Return default rootless spec.

§Example
use oci_spec::runtime::Spec;

let spec = Spec::rootless(1000, 1000);

Trait Implementations§

source§

impl Clone for Spec

source§

fn clone(&self) -> Spec

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Spec

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Spec

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Spec

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for Spec

source§

fn eq(&self, other: &Spec) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Spec

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for Spec

source§

impl StructuralPartialEq for Spec

Auto Trait Implementations§

§

impl RefUnwindSafe for Spec

§

impl Send for Spec

§

impl Sync for Spec

§

impl Unpin for Spec

§

impl UnwindSafe for Spec

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,