Easy to run, secure, open source tuf/uptane over the air (OTA) updates.
You may not want or need to run ota-community-edition using a microservice architecure. A monolith might fit your use case better if you just want to try ota-community-edition
or if your organization doesn't need to serve millions of devices. A monolith architecture is easier to deploy and manage, and uses less resources.
This project bundles all the scala apps included in ota-community-edition into a application that can be executed in a single container. The app can be easily configured using a single configuration file and avoids the usage of environment variables to simplifly configuration. Additionally, a docker-compose
file is provided to run the application. This means you no longer need a kubernetes cluster if you just want to try or test ota-community-edition
.
For small deployments, you don't need kubernetes. This solution can fit your organization better. With this app you could run ota in a single machine/vm + mariadb and kafka.
Currently there are three active branches in this repository:
-
master
.ota-community-edition
running without webapp and with kafka, using a single scala app. -
webapp
. The webapp is broken inota-community-edition
and therefore is not included inota-lith/master
. Thewebapp
branch includes patched version ofwebapp
that does not rely on user profile and is therefore working with bothota-community-edition
andota-lith
.
This project follows the upstream UPTANE OTA (see sources) projects.
The following forks/branches are included:
- tuf https://github.com/uptane/ota-tuf
- director https://github.com/uptane/director
- device-registry https://github.com/uptane/ota-device-registry
- treehub https://github.com/uptane/treehub
- libats https://github.com/uptane/libats
The dependencies are managed using
git-subtree under the
repos
directory on this repository.
To update to the latest changes from upstream ota-tuf, you could use for example:
git subtree pull --prefix repos/ota-tuf [email protected]:uptane/ota-tuf.git master --squash
If you wish to make changes to ota-tuf, you could edit directly
repos/ota-tuf
and then commit the changes, then use git-subtree
to
split the changes and open a pull request upstream. However, a simpler
way would be to just use git diff
to generate a patch and apply that
patch to the repository separately:
cd repos/ota-tuf
git diff . > tuf.patch
cd /home/user/my-ota-tuf
patch -p3 < tuf.patch
# normal git flow to create a PR for ota-tuf
And then once those changes are merged upstream you could use git subtree pull
to incorporate those changes.
To build a container running the services, run sbt docker:publishLocal
Configuration is done through a single config file, rather than using enviroment variables. This is meant to simplify the deployment scripts and just pass a configFile=file.conf
argument to the container, or when needed, using system properties (-Dkey=value
). An example config file is provied in ota-lith-ce.conf
.
If you already have kafka and mariadb instances you can just run the ota-lith binary using sbt or docker.
You'll need a valid ota-lith.conf, then run:
sbt -Dconfig.file=$(pwd)/ota-lith.conf run
The scala apps run in a single container, but you'll need kafka and mariadb. Write a valid ota-lith.conf.
sbt docker:publishLocal
docker run --name=ota-lith -v $(pwd)/ota-lith.conf:/tmp/ota-lith.conf uptane/ota-lith:latest -Dconfig.file=/tmp/ota-lith.conf
If you don't have sbt
or prefer to use a pre built image, you can use:
export img=uptane/ota-lith:$(git rev-parse master)
docker run --name=ota-lith -v $(pwd)/ota-lith.conf:/tmp/ota-lith.conf $img -Dconfig.file=/tmp/ota-lith.conf
If you don't have kafka or mariadb running and just want to try ota-ce, run using docker-compose:
-
Generate the required certificates using
scripts/gen-server-certs.sh
-
Update /etc/hosts with the following host names:
0.0.0.0 reposerver.ota.ce
0.0.0.0 keyserver.ota.ce
0.0.0.0 director.ota.ce
0.0.0.0 treehub.ota.ce
0.0.0.0 deviceregistry.ota.ce
0.0.0.0 app.ota.ce
0.0.0.0 ota.ce
- build docker image or pull from docker
sbt docker:publishLocal
Or:
export img=uptane/ota-lith:$(git rev-parse master)
docker pull $img
docker tag $img uptane/ota-lith:latest
- Run docker-compose
docker-compose -f ota-ce.yaml up
- Test
For example curl director.ota.ce/health/version
- You can now create device credentials and provision devices
Run scripts/gen-device.sh
. This will create a new dir in ota-ce-gen/devices/:uuid
where uuid
is the id of the new device. You can run aktualizr
in that directory using:
aktualizr --run-mode=once --config=config.toml
- You can now deploy updates to the devices
You can either use the API directly or use ota-cli to deploy updates. After provisioning devices (see above).
Before using the api or ota-cli
you will need to generate a valid credentials.zip
. Run scripts/get-credentials.zip
.
To deploy an update using the API and a custom campaign, see api-updates.md.
To deploy an update using ota-cli with or without a custom campaign see updates-ota-cli.md.
ota-lith is a collection of scripts and configurations that aggregates upstream projects and makes it easier to run a complete OTA solution. These scripts and configurations are maintained by simao.
The actual OTA implementation is implemented and maintained by multiple uptane contributors under the uptane organization.
There are currently multiple contributors to the upstream UPTANE repositories, most notably toradex which runs the same uptane implementation as part of the torizon platform
All the UPTANE repositories are updated
frequently and docker images are built and pushed to
hub.docker.io
. Periodically, these images are incorporated into
ota-lith. This is usually just a case of updating the docker tags used
and creating the containers again.
However, the webapp
project is not part of the UPTANE
repositories and is independently maintained by HERE Technologies
GmbH. These changes might or might not be merged back into ota-lith
,
depending on the complexity of merging the changes.
The OTA Community Edition (OTA CE) was initially created and developed by Advanced Telematic Systems GmbH. Advanced Telematic Systems GmbH (ATS) was acquired by HERE Technologies GmbH and developed OTA CE further. All changes to the already open source components continued to be published in the ats github repository.
Recently, the uptane github organization was created and all projects were forked into that organization. HERE Technologies continues to develop their OTA solution, publishing their open source changes to the ATS github repository.
Changes made to the ATS github repository are merged back to the Uptane Repositories by the uptane contributors if they are considered important, and they are then used by ota-lith once the docker images are updated.
The HERE OTA CE solution appears to be on a bug fix only mode, while the UPTANE OTA CE is actively developing new features.