This repo houses the code for the demo we will be presenting during our keynote at KubeCon NA 2024.
.
├── Cargo.lock
├── Cargo.toml
├── README.md
├── demo-guest
├── demo-main
├── puml
└── target
demo-guest
:x86_64-unknown-none
native Hyperlight guest application.demo-main
: HTTP server using Hyperlight's host SDK.
Hyperlight executes arbitrary code safely and quickly. It does that by booting up an OS-less VM that executes functions.
demo-guest
exports two guest functions:PrintOutput
, andDereferenceRawNullPointer
.
Note: OS-less VMs cannot make any syscalls, so we escape the VM to make host function calls to, say, print to standard output.
cd demo-main
cargo run