This is early alpha version! There's not all features yet implemented, not heavily tested with different devices and code might get large breaking changes until the first release.
Eliot is a open source system for managing containerized applications on top of the IoT device with an emphasis to usability, simplicity, security and stability. Eliot gives simplified app delivery, isolation and additional security to traditional installations.
Docker and Kubernetes have inspired heavily and if you're familiar with those, you find really easy to get started with Eliot.
Built with ❤︎ by Erno Aapa and contributors
Eliot is based on top of the containerd to provide simple, Kubernetes like API for managing containers.
Eliot is built from following components
eli
- Command line tool for managing the deviceeliotd
- Daemon for the device to manage containersLet us know what would be the next awesome feature :)
See the documentation how to get started with Eliot.
Rest of this document is about developing Eliot itself, not how to develop on top of the Eliot.
eliotd
)git clone https://github.com/ernoaapa/eliot && cd eliot
eli
cliIf you're making changes to the eli
command line tool, you can just build and run the command
go run ./cmd/eli/* get nodes
eliotd
daemonTo develop eliotd
there's two different ways; latter is not tested
eliotd
in EliotOS with Linuxkiteliotd
daemon locallyFor development purpose, you can build and run the EliotOS locally, but keep in mind that the environment is amd64 not arm64 so container images what work in this environment might not work in RaspberryPI if the images are not multi-arch images.
eliotd
binary and Docker image
goreleaser --snapshot --rm-dist
curl https://raw.githubusercontent.com/ernoaapa/eliot-os/master/rpi3.yml > rpi3.yml
rpi3.yml
goreleaser
the amd64
container image namerpi3.yml
and update the eliotd
image tag to match with the previous valuelinuxkit build rpi3.yml
sudo linuxkit run hyperkit -cpus 1 -mem "1048" -disk size=10G -networking vmnet moby
eli get nodes
eliotd
locallyThis is not tested, but should go roughly like this:
go run ./cmd/eliotd/* --debug --grpc-api-listen 0.0.0.0:5000