replace imbus_beacon_node_spec_0_12_3 with medalla-build (#2018)

This commit is contained in:
Sacha Saint-Leger 2020-11-14 12:16:03 +01:00 committed by GitHub
parent e2e1f97aea
commit 3903b2cda8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View File

@ -25,7 +25,7 @@ To build the Nimbus beacon node and it's dependencies, run:
*Medalla testnet*
```
make nimbus_beacon_node_spec_0_12_3
make medalla-build
```
*Mainnet*

View File

@ -50,7 +50,7 @@ Click on `Compile from source` and copy the command at the bottom.
From your `nimbus-eth2` repository, run:
```
make NIMFLAGS="-d:insecure" nimbus_beacon_node_spec_0_12_3
make NIMFLAGS="-d:insecure" medalla-build
```
Followed by:

View File

@ -13,7 +13,7 @@ Grafana is a tool for beautiful dashboard monitoring that works well with Promet
The easiest way to see metrics concerning your validator / node is to build the beacon node with the `NIMFLAGS="-d:insecure"` flag. For example, to enable metrics for a `medalla` validator, run:
```
make NIMFLAGS="-d:insecure" nimbus_beacon_node_spec_0_12_3
make NIMFLAGS="-d:insecure" medalla-build
```
> **Note:** Metrics are not included in the binary by default. The `NIMFLAGS="-d:insecure"` is needed because we consider the HTTP server that needs to start to serve the metrics to be insecure (without this flag it won't launch properly). As such, we recommend you make sure port 8008 is protected.

View File

@ -269,7 +269,7 @@ git clone https://github.com/status-im/nimbus-eth2
Change into the directory and build the beacon node.
```
cd nimbus-eth2
make nimbus_beacon_node_spec_0_12_3
make medalla-build
```
*Patience... this may take a few minutes.*

View File

@ -7,13 +7,13 @@ As it stands, we are continuously making improvements to both stability and memo
> **Note:** While the `master` branch of the `nimbus-eth2` repository is more stable, the latest updates happen in the `devel` branch which is (usually) merged into master every week on Tuesday. If you choose to run Nimbus directly from the `devel` branch, be prepared for instabilities!
To update and restart, run `git pull`, `make update`, followed by `make nimbus_beacon_node_spec_0_12_3`:
To update and restart, run `git pull`, `make update`, followed by `make medalla-build`:
```
cd nimbus-eth2
git pull
make update # Update dependencies
make nimbus_beacon_node_spec_0_12_3 # Rebuild beacon node
make medalla-build # Rebuild beacon node
./run-medalla-beacon-node.sh # Restart using same keys as last run
```