ADR: Default runtime for harmony workloads

This ADR proposes to use k3s as a default runtime on linux and k3d on other platforms supporting docker
This commit is contained in:
2025-03-17 15:48:14 -04:00
parent 7291db7ca3
commit 35fcc295aa
3 changed files with 73 additions and 1 deletions

View File

@@ -17,5 +17,8 @@ async fn main() {
},
};
Maestro::load_from_env().interpret(Box::new(lamp_stack)).await.unwrap();
Maestro::load_from_env()
.interpret(Box::new(lamp_stack))
.await
.unwrap();
}