I just released a couple of Rust crates which could likely be useful to anyone looking to implement a hawkBit client in Rust. Signed-off-by: Guillaume Desmottes <guillaume.desmottes@collabora.com>
122 lines
9.4 KiB
Markdown
122 lines
9.4 KiB
Markdown
<img src=hawkbit_logo.png width=533 height=246 />
|
|
|
|
# Eclipse hawkBit™ - Update Server
|
|
|
|
Eclipse [hawkBit](http://www.eclipse.org/hawkbit/index.html) is an domain independent back end solution for rolling out software updates to constrained edge devices as well as more powerful controllers and gateways connected to IP based networking infrastructure.
|
|
|
|
Build: [](https://circleci.com/gh/eclipse/hawkbit)
|
|
[](https://sonar.ops.bosch-iot-rollouts.com)
|
|
[](https://maven-badges.herokuapp.com/maven-central/org.eclipse.hawkbit/hawkbit-parent)
|
|
[](https://www.openhub.net/p/hawkbit)
|
|
|
|
Docker: [](https://hub.docker.com/r/hawkbit/hawkbit-update-server) [](https://hub.docker.com/r/hawkbit/hawkbit-update-server)
|
|
|
|
# Documentation
|
|
|
|
see [hawkBit Documentation](https://www.eclipse.org/hawkbit/)
|
|
|
|
# Contact us
|
|
|
|
- Having questions about hawkBit? Check [Stack Overflow](https://stackoverflow.com/questions/tagged/eclipse-hawkbit)
|
|
- Want to chat with the team behind hawkBit? [](https://gitter.im/eclipse/hawkbit?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
|
- Having issues with hawkBit? Open a [GitHub issue](https://github.com/eclipse/hawkbit/issues).
|
|
- You can also check out our [Project Homepage](https://www.eclipse.org/hawkbit) for further contact options.
|
|
|
|
# Examples and Extensions
|
|
|
|
Next to the hawkBit core hosted here the project maintains as well [examples](https://github.com/eclipse/hawkbit-examples) and [extension](https://github.com/eclipse/hawkbit-extensions) repositories.
|
|
|
|
# hawkBit sandbox
|
|
|
|
We offer a sandbox installation that is free for everyone to try out hawkBit. However, keep in mind that the sandbox database will be reset from time to time. It is also not possible to upload any artifacts into the sandbox. But you can use it to try out the Management UI, Management API and DDI API. Keep in mind as well that you are not permitted to store any kind of personal data in the sandbox.
|
|
|
|
[https://hawkbit.eclipse.org](https://hawkbit.eclipse.org)
|
|
|
|
In addition the following vendors offer free trial accounts for their hawkBit compatible products:
|
|
|
|
- [Bosch IoT Rollouts](https://developer.bosch-iot-suite.com/service/rollouts)
|
|
- [Kynetics Update Factory](https://www.kynetics.com/iot-platform-update-factory)
|
|
|
|
# Device Integration
|
|
|
|
hawkBit does not provide off the shelf clients for devices as part of the project. The long term goal is to provide an [Eclipse hono](https://github.com/eclipse/hono) integration which will provide connectivity through various IoT protocols and as a result allows a wide range of clients to connect to hawkBit. However, the hawkBit [Direct Device Integration (API) API](https://www.eclipse.org/hawkbit/apis/ddi_api/) is HTTP/JSon based which should allow any update client to integrate quite easily.
|
|
|
|
There are clients outside of the Eclipse IoT eco system as well, e.g.:
|
|
|
|
- [SWupdate](https://github.com/sbabic/swupdate) which is a Linux Update agent with focus on a efficient and safe way to update embedded systems.
|
|
- [rauc-hawkbit](https://github.com/rauc/rauc-hawkbit) which is a python-based hawkBit client application and library for the [RAUC](https://github.com/rauc/rauc) update framework.
|
|
- [hawkbit-rs](https://github.com/collabora/hawkbit-rs) provides a couple of [Rust](https://www.rust-lang.org) crates to help [implement](https://crates.io/crates/hawkbit) and [test](https://crates.io/crates/hawkbit_mock) hawkBit clients.
|
|
|
|
# Runtime dependencies and support
|
|
|
|
## Java Runtime Environment: 1.8,11
|
|
|
|
## SQL database
|
|
|
|
| Database | H2 | MySQL/MariaDB | MS SQL Server | PostgreSQL | IBM DB2 |
|
|
| --------------------------------- | :------------------------------------------------: | :-----------------------------------------------------------------------: | :-------------------------------------------------------: | :----------------------------------------------------------------: | :----------------: |
|
|
| DDLs maintained by project | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
|
| Test dependencies defined | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | |
|
|
| Versions tested | 1.4 | MySQL 5.6/5.7, AWS Aurora | MS SQL Server 2017/2019 | PostgreSQL 12/13 | DB2 Server v11.1 |
|
|
| Docker image with driver provided | :white_check_mark: | :white_check_mark: (Tag: "-mysql") | :white_check_mark: | :white_check_mark: | |
|
|
| JDBC driver | [H2 1.4](https://github.com/h2database/h2database) | [MariaDB Connector/J 2.0](https://github.com/MariaDB/mariadb-connector-j) | [MSSQL-JDBC 6.4](https://github.com/Microsoft/mssql-jdbc) | [PostgreSQL JDBC Driver 42.2.10](https://github.com/pgjdbc/pgjdbc) | |
|
|
| Status | Test, Dev | Production grade | Production grade | Test, Dev | Test, Dev |
|
|
|
|
## (Optional) RabbitMQ: 3.6,3.7,3.8
|
|
|
|
# Getting Started
|
|
|
|
We are providing a [Spring Boot](https://projects.spring.io/spring-boot/) based reference [Update Server](hawkbit-runtime/hawkbit-update-server) including embedded H2 DB for test and evaluation purposes.
|
|
Run with docker:
|
|
|
|
```bash
|
|
docker run -d -p 8080:8080 hawkbit/hawkbit-update-server
|
|
```
|
|
|
|
Open the update server in your browser:
|
|
|
|
[localhost:8080](http://localhost:8080)
|
|
|
|
See below for how to build and run the update server on your own. In addition we have a [guide](https://www.eclipse.org/hawkbit/guides/runhawkbit/) for setting up a complete landscape.
|
|
|
|
# hawkBit (Spring boot) starters
|
|
|
|
Next to the [Update Server](hawkbit-runtime/hawkbit-update-server) we are also providing a set of [Spring Boot Starters](hawkbit-starters) to quick start your own [Spring Boot](https://projects.spring.io/spring-boot/) based application.
|
|
|
|
# Clone, build and run hawkBit
|
|
|
|
## Build and start hawkBit [Update Server](hawkbit-runtime/hawkbit-update-server)
|
|
|
|
```bash
|
|
git clone https://github.com/eclipse/hawkbit.git
|
|
cd hawkbit
|
|
mvn clean install
|
|
java -jar ./hawkbit-runtime/hawkbit-update-server/target/hawkbit-update-server-#version#.jar
|
|
```
|
|
|
|
## Start hawkBit [Device Simulator](https://github.com/eclipse/hawkbit-examples/tree/master/hawkbit-device-simulator) (optional)
|
|
|
|
```bash
|
|
git clone https://github.com/eclipse/hawkbit-examples.git
|
|
cd hawkbit-examples
|
|
mvn clean install
|
|
```
|
|
|
|
```bash
|
|
java -jar ./hawkbit-device-simulator/target/hawkbit-device-simulator-#version#.jar
|
|
```
|
|
|
|
## Generate getting started data with the [Management API example](https://github.com/eclipse/hawkbit-examples/tree/master/hawkbit-example-mgmt-simulator) (optional)
|
|
|
|
```bash
|
|
java -jar ./hawkbit-example-mgmt-simulator/target/hawkbit-example-mgmt-simulator-#version#-exec.jar
|
|
```
|
|
|
|
# Status and API stability
|
|
|
|
hawkBit is currently in '0.X' semantic version. That is due to the need that there is still content in hawkBit that is in need for refactoring. That includes the maven module structure, Spring Boot Properties, Spring Boot auto configuration as well as internal Java APIs (e.g. the [repository API](https://github.com/eclipse/hawkbit/issues/197) ).
|
|
|
|
However, the device facing [DDI API](https://github.com/eclipse/hawkbit/tree/master/hawkbit-rest/hawkbit-ddi-api) is on major version 'v1' and will be kept stable.
|
|
|
|
Server facing and [DMF API](https://github.com/eclipse/hawkbit/tree/master/hawkbit-dmf/hawkbit-dmf-api) are [Management API](https://github.com/eclipse/hawkbit/tree/master/hawkbit-rest/hawkbit-mgmt-api) are on v1 as well. However, we cannot fully guarantee the same stability during hawkBit's 0.X development but we will try as best we can.
|