mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-02 08:17:01 +00:00
Merge pull request #8670 from mkulke/mkulke/fix-layer-ordering
Bump image-rs rev to include image-layer-ordering fix
This commit is contained in:
commit
d0df91935b
1321
src/agent/Cargo.lock
generated
1321
src/agent/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -11,7 +11,7 @@ rustjail = { path = "rustjail" }
|
||||
protocols = { path = "../libs/protocols", features = ["async", "with-serde"] }
|
||||
lazy_static = "1.3.0"
|
||||
ttrpc = { version = "0.7.1", features = ["async"], default-features = false }
|
||||
protobuf = "3.2.0"
|
||||
protobuf = "3.3.0"
|
||||
libc = "0.2.58"
|
||||
nix = "0.24.2"
|
||||
capctl = "0.2.0"
|
||||
@ -72,7 +72,7 @@ clap = { version = "3.0.1", features = ["derive"] }
|
||||
|
||||
|
||||
# Image pull/decrypt
|
||||
image-rs = { git = "https://github.com/confidential-containers/guest-components", tag = "v0.8.0", default-features = false, features = [
|
||||
image-rs = { git = "https://github.com/confidential-containers/guest-components", rev = "a151bca6d5cc1a47f2cd91437134ad8ec9c754fe", default-features = false, features = [
|
||||
"kata-cc-native-tls",
|
||||
"verity",
|
||||
"signature-simple-xrss",
|
||||
|
@ -147,7 +147,6 @@ fn config_allows(req: &impl MessageDyn) -> ttrpc::Result<()> {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#[cfg(feature = "agent-policy")]
|
||||
async fn policy_allows(req: &(impl MessageDyn + serde::Serialize)) -> ttrpc::Result<()> {
|
||||
let request = serde_json::to_string(req).unwrap();
|
||||
|
957
src/libs/Cargo.lock
generated
957
src/libs/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -14,11 +14,11 @@ sealed-secret = []
|
||||
[dependencies]
|
||||
ttrpc = { version = "0.7.1" }
|
||||
async-trait = { version = "0.1.42", optional = true }
|
||||
protobuf = { version = "3.2.0" }
|
||||
protobuf = { version = "3.3.0" }
|
||||
serde = { version = "1.0.130", features = ["derive"], optional = true }
|
||||
serde_json = { version = "1.0.68", optional = true }
|
||||
oci = { path = "../oci" }
|
||||
|
||||
[build-dependencies]
|
||||
ttrpc-codegen = "0.4.2"
|
||||
protobuf = { version = "3.2.0" }
|
||||
protobuf = { version = "3.3.0" }
|
||||
|
@ -793,7 +793,6 @@ func (k *kataAgent) startSandbox(ctx context.Context, sandbox *Sandbox) error {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
storages := setupStorages(ctx, sandbox)
|
||||
|
||||
req := &grpc.CreateSandboxRequest{
|
||||
|
Loading…
Reference in New Issue
Block a user