Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aventer-ug/mesos-firecracker-executor
Mesos Executor to schedule Jobs as microvm.
https://github.com/aventer-ug/mesos-firecracker-executor
firecracker mesos microvm
Last synced: 24 days ago
JSON representation
Mesos Executor to schedule Jobs as microvm.
- Host: GitHub
- URL: https://github.com/aventer-ug/mesos-firecracker-executor
- Owner: AVENTER-UG
- License: gpl-3.0
- Created: 2022-04-08T09:03:32.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-02-26T21:18:08.000Z (11 months ago)
- Last Synced: 2024-05-01T10:53:14.178Z (9 months ago)
- Topics: firecracker, mesos, microvm
- Language: Go
- Homepage:
- Size: 4.12 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- Changelog: changelog.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Mesos Firecracker Executor
This executer will deploy a microvm per task, and run the mesos task command inside of it.
## variables
| Variable | Default | Description |
| --- | --- | ---- |
| FIRECRACKER_AGENT_PORT | 8085 | The port there the vmm-agent is listening |
| FIRECRACKER_PAYLOAD_FILE | | Payload file for the case the microvm have to run a specific job |
| FIRECRACKER_WORKDIR | /mnt/mesos/sandbox | The directory where the executor will find rootfs, vmlinux and the payload |
| FIRECRACKER_VCPU | 1 | The amount of vCPU for the microvm |
| FIRECRACKER_MEM_MB | 256 | The amount of memory for the microvm |## Notes
If the custom executer would be running under the mesos containerizer. The default isolation configuration in mesos
is to tight. For the first shot, change the isolation to:```
MESOS_ISOLATION=filesystem/linux,docker/runtime
```My mesos-compose framework will use the docker containerizer. These should work out of the box.