mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-11 12:52:23 +00:00
runtime-rs: parse SEV-SNP related config file settings
The 'sev_snp_guest' default value of 'false' is in compliance with the golang runtime behaviour. Signed-off-by: Pavel Mores <pmores@redhat.com>
This commit is contained in:
parent
04c56a0aaf
commit
c549d12da7
@ -825,6 +825,14 @@ pub struct SecurityInfo {
|
|||||||
#[serde(default)]
|
#[serde(default)]
|
||||||
pub confidential_guest: bool,
|
pub confidential_guest: bool,
|
||||||
|
|
||||||
|
/// If false prefer SEV even if SEV-SNP is also available
|
||||||
|
#[serde(default)]
|
||||||
|
pub sev_snp_guest: bool,
|
||||||
|
|
||||||
|
/// Path to SNP certificates
|
||||||
|
#[serde(default)]
|
||||||
|
pub snp_certs_path: String,
|
||||||
|
|
||||||
/// Path to OCI hook binaries in the *guest rootfs*.
|
/// Path to OCI hook binaries in the *guest rootfs*.
|
||||||
///
|
///
|
||||||
/// This does not affect host-side hooks which must instead be added to the OCI spec passed to
|
/// This does not affect host-side hooks which must instead be added to the OCI spec passed to
|
||||||
|
Loading…
Reference in New Issue
Block a user