Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/werf/trdl
The universal solution for delivering your software updates securely from a trusted The Update Framework (TUF) repository.
https://github.com/werf/trdl
continuous-delivery security tuf update werf
Last synced: 3 months ago
JSON representation
The universal solution for delivering your software updates securely from a trusted The Update Framework (TUF) repository.
- Host: GitHub
- URL: https://github.com/werf/trdl
- Owner: werf
- License: apache-2.0
- Created: 2021-04-05T15:01:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-02T09:20:41.000Z (3 months ago)
- Last Synced: 2024-08-02T10:51:39.265Z (3 months ago)
- Topics: continuous-delivery, security, tuf, update, werf
- Language: Go
- Homepage: https://trdl.dev
- Size: 3.5 MB
- Stars: 246
- Watchers: 8
- Forks: 12
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-software-supply-chain-security - werf/trdl: The universal solution for delivering your software updates securely from a trusted The Update Framework (TUF) repository.
README
# trdl
[![maintainability][maintainability-badge]][maintainability-link]
[![coverage][coverage-badge]][coverage-link]
[![github discussions][discussions-badge]][discussions-link]
[![coc][coc-badge]][coc-link][maintainability-badge]: https://api.codeclimate.com/v1/badges/a95ed9e90acae45f40ee/maintainability
[maintainability-link]: https://codeclimate.com/github/werf/trdl/maintainability
[coverage-badge]: https://api.codeclimate.com/v1/badges/a95ed9e90acae45f40ee/test_coverage
[coverage-link]: https://codeclimate.com/github/werf/trdl/test_coverage
[discussions-badge]: https://img.shields.io/github/discussions/werf/trdl
[discussions-link]: https://github.com/werf/trdl/discussions
[coc-badge]: https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg
[coc-link]: CODE_OF_CONDUCT.mdtrdl *(stands for "true delivery")* is an Open Source solution providing a secure channel for delivering updates from the Git repository to the end user.
The project team releases new versions of the software and switches them in the release channels. Git acts as the single source of truth while [Vault](https://www.vaultproject.io/) is used as a tool to verify operations as well as populate and maintain the [TUF repository](https://github.com/theupdateframework/specification). The user selects a release channel, continuously receives the latest software version from the TUF repository, and uses it.
We have been successfully using trdl to continuously deliver our [werf CI/CD tool](https://github.com/werf/werf) to CI runners and user hosts.
## Architecture
trdl combines two key components: the server and the client.
**trdl-server**:
* builds and releases software versions;
* publishes the release channels *(here is an [example configuration from werf](https://github.com/werf/werf/blob/multiwerf/trdl_channels.yaml))*;
* ensures the release and the publication security via verifying the minimal number of valid GPG signatures associated with an action;
* ensures the object storage security via saving data signed by keys (no one has access to those keys) and continuously rotating TUF keys and metadata.**trdl-client**:
* manages software repositories;
* updates software version within the selected release channel;
* provides easy operation with software version artifacts in the shell session;
* ensures safe communication via working with the TUF repository in a reliable fashion.## How it works
### Releasing
### Publishing the channels
## Installation
### trdl-client
Download `trdl` client binaries from the [GitHub Releases page](https://github.com/werf/trdl/releases), optionally verifying the binary with the PGP signature.
## Documentation
Project's website is [now available](https://trdl.dev/) with more information (including developers quickstart) to follow soon.
## Community & support
Please feel free to reach developers/maintainers and users via [GitHub Discussions](https://github.com/werf/trdl/discussions) for any questions regarding trdl.
Your issues are processed carefully if posted to [issues at GitHub](https://github.com/werf/trdl/issues).
## License
Apache License 2.0, see [LICENSE](LICENSE).