Tooling for participating in Ephemeral testnet based on its genesis repository.
Running a node in this test network requires resetting clients with a new genesis after given period. In this repository, you can find scripts and deployment for this automatized setup.
Script retention.sh
provides the main mechanism for resetting the network. It checks for period timeout and resets the node automatically. Make sure to read the script first, modify variables and paths to match your setup.
By default, the script is controlling clients using their systemd services. You can find examples files for services in systemd-services
directory, you should also modify them to suit your system.
This repository also includes configuration files for cloud-init
. These provide many deployment options for various client combinations and also explorers.
Another deployment option is using docker-compose
setup. This is a simple option to run a node which always follows the current chain.
Just ensure that Docker and docker-compose are installed, clone this repository and start the setup.
git clone https://github.com/pk910/test-testnet-scripts.git
cd test-testnet-scripts/Docker
docker-compose up
Currently it only includes single client pair with automatic restart and needs more work. Feel free to extend it with other options.
Currently only a geth-lighthouse client pair is supported and retention is not automated.
To deploy a geth-lighthouse node via helm use the chart included in this repository. More information is available in the included README.md. In order to manually reset the network, follow these steps:
- Uninstall the chart:
helm uninstall geth-lighthouse-node
- Identify the PersistentVolumeClaim used by the chart:
kubectl get pvc
- Delete the pvc, e.g.
kubectl delete pvc geth-lighthouse-node-0
. - Install the chart with the latest iteration by setting the value
--set ephemery.iteration=<latest-iteration>
:
If you simply want to run a node on Ephemery, you can manually set this up by following one of the sets of instructions below.
Warning: you will need to manually reset your system when the testnet is reset.