{"id":21659913,"url":"https://github.com/aurae-runtime/environment","last_synced_at":"2025-07-17T22:33:18.998Z","repository":{"id":87268764,"uuid":"532304585","full_name":"aurae-runtime/environment","owner":"aurae-runtime","description":"Distributed Systems Runtime. Core workspace and top level environment.","archived":true,"fork":false,"pushed_at":"2022-10-16T21:44:36.000Z","size":4213,"stargazers_count":13,"open_issues_count":1,"forks_count":6,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-07-16T23:32:39.089Z","etag":null,"topics":["containers","distributed-systems","kernel","microvms","mtls","networking","runtime","rust","security"],"latest_commit_sha":null,"homepage":"https://aurae.io","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aurae-runtime.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-09-03T15:48:57.000Z","updated_at":"2024-01-17T06:26:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"89bd9ef7-bf06-468c-84f1-5087f6ad8ebd","html_url":"https://github.com/aurae-runtime/environment","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aurae-runtime/environment","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurae-runtime%2Fenvironment","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurae-runtime%2Fenvironment/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurae-runtime%2Fenvironment/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurae-runtime%2Fenvironment/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aurae-runtime","download_url":"https://codeload.github.com/aurae-runtime/environment/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurae-runtime%2Fenvironment/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265672343,"owners_count":23808844,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["containers","distributed-systems","kernel","microvms","mtls","networking","runtime","rust","security"],"created_at":"2024-11-25T09:31:52.784Z","updated_at":"2025-07-17T22:33:18.991Z","avatar_url":"https://github.com/aurae-runtime.png","language":"Shell","funding_links":[],"categories":["Shell"],"sub_categories":[],"readme":"# Aurae\n\nAurae is a free and open source Rust project which houses a generic systems runtime daemon built specifically for enterprise distributed systems. Aurae is designed to work well with Kubernetes, and serves as an enterprise focused alternative to systemd.\n\nThink of [auraed](https://github.com/aurae-runtime/auraed) as a pid 1 init machine daemon with a scope similar to [systemd](https://www.freedesktop.org/wiki/Software/systemd/) and functionality similar to [containerd](https://github.com/containerd/containerd) and [firecracker](https://github.com/firecracker-microvm/firecracker).\n\nAurae brings [SPIFFE](https://github.com/spiffe)/[SPIRE](https://github.com/spiffe/spire) (x509 mTLS) backed identity, authentication (authn) and authorization (authz) as low as the Unix domain socket layer in a distributed system.\n\nAurae exposes its functionality over a gRPC API which is referred to as the [Aurae Standard Library](https://github.com/aurae-runtime/auraed/tree/main/stdlib#the-aurae-standard-library).\n\nA single Aurae instance has no awareness of higher order scheduling mechanisms such as the Kubernetes control plane. Aurae is designed to take ownership of a single machine, and expose the standard library a generic and meaningful way for higher order consumers.\n\n\n## Motivation \n\nRead [Why fix Kubernetes and Systemd](https://medium.com/@kris-nova/why-fix-kubernetes-and-systemd-782840e50104) by [Kris Nóva](https://github.com/krisnova). \n\nAurae attempts to simplify and improve the stack in enterprise distributed systems by carving out a small portion of responsibility while offering a few basic guarantees with regard to state, synchronicity, awareness, and security.\n\nAurae brings enterprise identity as low as the socket layer in a system, which unlocks multi tenant workloads that run below tools like Kubernetes.\n\n## Workloads \n\nAurae supports 3 types of workloads which can be started and scheduled alongside each other on a single machine.\n\n - Executables (Regular executable processes on a host system. Similar to [Systemd Units with ExecStart](https://www.freedesktop.org/software/systemd/man/systemd.service.html)).\n - Containers (A secure and opinionated container runtime is baked directly into the Aurae binary).\n - Virtualization (A secure and opinionated hypervisor is baked directly into the Aurae binary).\n\n## AuraeScript \n\nAurae offers a Turing complete scripting language written in Rust and similar to TypeScript called [AuraeScript](https://github.com/aurae-runtime/auraescript).\n\n```typescript\nlet execute = true;    // Toggle execution\n\nlet aurae = connect(); // Connect to the daemon\naurae.info().json();   // Show identity\n\nif execute {\n    // Execute \"cat /etc/resolv.conf\"\n    let runtime = aurae.runtime();\n    let example = exec(\"cat /etc/resolv.conf\");\n    runtime.start(example).json();\n}\n```\n\nAuraeScript servers as one of many clients to the system and can be used to express workload manifests instead of YAML.\nAuraeScript can be used to control and gain visibility to the system.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faurae-runtime%2Fenvironment","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faurae-runtime%2Fenvironment","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faurae-runtime%2Fenvironment/lists"}