aurae
aurae copied to clipboard
Distributed systems runtime daemon written in Rust.
Added a SIGTERM signal handler that will broadcast to all cells. Notes: * The `Cells` cache is no longer on `CellService` so that we can access it anywhere in auraed...
This is the same PR as #209, but its a branch of the main repo, not a fork. Theres a theory in discord that its impacting the `GITHUB_TOKEN` scope. I...
I was looking over https://github.com/aurae-runtime/aurae/blob/main/api/v0/runtime.proto, and two instances of this caught my attention. > /// A comma-separated list of CPU IDs where the task in the control group > ///...
Lets get the VM service started, we need to get the API drafted and code the implementation with Firecracker
We need to add [Youki](https://github.com/containers/youki) to the project and finish up the pods service such that we can schedule pods and containers using the new RPC in runtime.
We need a way to query the cache and list all known pods, containers, cells, and executables known to a specific auraed. If list works recursively we should be able...
Consider a CRI shim of sorts that sits on top of Aurae in the future? https://github.com/kubernetes/cri-api/blob/master/pkg/apis/runtime/v1/api.proto
The projects needs a place to store containers, which could implicitly mean the project has an authz/secrets problem as well. Can we please identify a place for the project to...
Now that `auraed` is launching nested versions of itself, we will need to proxy POSIX signals through `auraed` 1. Implement a POSIX compliant signal handler in Rust in Auraed and...
Right now all of our code is very disparate, some files have apache 2 headers, some do not, some have large amounts of comments, some are empty, etc, etc This...