You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The stress test tool currently fails when trying to test with OCI artifacts such as ghcr.io/conta inerd/runwasi/wasi-demo-oci-artifact:latest due to an assumption about the image configuration format.
It failed with
Error: serde failedCaused by: missing field `rootfs` at line 10 column 1
The image_config() implementation in client.rs attempts to parse all the images using ImageConfiguration which expects a standard container image with a rootfs field.
The stress test tool currently fails when trying to test with OCI artifacts such as
ghcr.io/conta inerd/runwasi/wasi-demo-oci-artifact:latest
due to an assumption about the image configuration format.It failed with
The
image_config()
implementation in client.rs attempts to parse all the images usingImageConfiguration
which expects a standard container image with arootfs
field.However, OCI Artifacts have a different configuration format. See https://tag-runtime.cncf.io/wgs/wasm/deliverables/wasm-oci-artifact/
Suggested solutions
The text was updated successfully, but these errors were encountered: