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

Improve validator onboarding #128

Merged
merged 3 commits into from
Aug 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
1 change: 1 addition & 0 deletions TESTNET_BRANCH
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
testnet_abel
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: maybe add an ending new line?

1 change: 1 addition & 0 deletions TESTNET_DOMAIN
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
testnet-abel
15 changes: 11 additions & 4 deletions src/operators/testnets/joining.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ the Docker docs.

### Installing the Linera Toolchain

> When installing the Linera Toolchain, you **must** check out the
> `{{#include ../../../TESTNET_BRANCH}}` branch.

To install the Linera Toolchain refer to the
[installation section](../../developers/getting_started/installation.md#installing-from-github).

Expand All @@ -34,9 +37,13 @@ For the next section, we'll be working out of the `docker` subdirectory in the
Validators run via Docker Compose do not come with a pre-packaged load balancer
to perform TLS termination (unlike validators running on Kubernetes).

Thus, it is required of validator operators to provide TLS termination and
support long-lived HTTP/2 connections required for the functioning of the Linera
notification system.
The load balancer configuration **must** have the following properties:

1. Support HTTP/2 connections.
2. Support gRPC connections.
3. Support long-lived HTTP/2 connections.
4. Support a maximum body size of up to 20 MB.
5. Provide TLS termination with a certificate signed by a known CA.

Finally, the load balancer that performs TLS termination must redirect traffic
from `443` to `19100` (the port exposed by the proxy).
Expand Down Expand Up @@ -78,7 +85,7 @@ bucket managed by the Linera Protocol core team.
An example can be found here:

```bash
wget "https://storage.googleapis.com/linera-io-dev-public/{{#include ../../../RELEASE_DOMAIN}}/genesis.json"
wget "https://storage.googleapis.com/linera-io-dev-public/{{#include ../../../TESTNET_DOMAIN}}/genesis.json"
```

### Creating Your Keys
Expand Down
Loading