mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-26 15:32:30 +00:00
runtime-rs: CreateContainerRequest has Default
We can just use it to initialize the default fields. Signed-off-by: Peng Tao <bergwolf@hyper.sh>
This commit is contained in:
parent
e9e82ce28b
commit
5b6596f54e
@ -143,13 +143,10 @@ impl Container {
|
|||||||
// create container
|
// create container
|
||||||
let r = agent::CreateContainerRequest {
|
let r = agent::CreateContainerRequest {
|
||||||
process_id: agent::ContainerProcessID::new(&config.container_id, ""),
|
process_id: agent::ContainerProcessID::new(&config.container_id, ""),
|
||||||
string_user: None,
|
|
||||||
devices: vec![],
|
|
||||||
storages,
|
storages,
|
||||||
oci: Some(spec),
|
oci: Some(spec),
|
||||||
guest_hooks: None,
|
|
||||||
sandbox_pidns,
|
sandbox_pidns,
|
||||||
rootfs_mounts: vec![],
|
..Default::default()
|
||||||
};
|
};
|
||||||
|
|
||||||
self.agent
|
self.agent
|
||||||
|
Loading…
Reference in New Issue
Block a user