Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: releases #220

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions .github/workflows/tag-release.yml

This file was deleted.

8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,13 @@ BoreD is a secure, end-to-end encrypted, reverse tunnel daemon for Kubernetes AP
- Automatic reconnects
- Handles multiple Kubernetes clusters


## Architecture

![architecture](./images/architecture.png)

- [BoreD](./README.md)
- [BoreD Agent](https://github.com/lensapp/bored-agent)


## JWT Tokens

### Client
Expand Down Expand Up @@ -60,9 +58,13 @@ Both client and agent use websockets to establish socket connection to BoreD dae

BoreD tunnel encryption is done in two phases. Tunneled data is being encrypted using symmetric encryption (AES-256-GCM). Key exhange is done using asymmetric encryption (RSA-4096) where BoreD agent has the private key and the public key is distributed to clients via BoreD daemon.

### Release

1. Make a PR that updates version in package.json
2. Create and push git tag, e.g. "v0.10.4"

## License

Copyright (c) 2021 Mirantis, Inc.

Licensed under the [MIT license](./LICENSE).

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bored",
"version": "0.10.3",
"version": "0.10.4",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
Expand Down
Loading