sigil/tests/vmm_x86.dhall

15 lines
345 B
Plaintext
Raw Normal View History

2021-03-28 15:07:21 +02:00
let Sigil = env:DHALL_SIGIL
2020-04-26 07:18:38 +02:00
2021-03-28 15:07:21 +02:00
let Init = Sigil.Init
2020-04-26 07:18:38 +02:00
let Child = Init.Child
in λ(binary : Text) →
Child.flat
Child.Attributes::{
, binary
, exitPropagate = True
2021-03-28 15:07:21 +02:00
, resources = Init.Resources::{ caps = 2048, ram = Sigil.units.MiB 256 }
, routes = [ Sigil.Init.ServiceRoute.parent "VM" ]
}