A simple UI and REST API to operate Polkadot multi-chains testnets in Kubernetes.
The testnet-manager let you view the following information about nodes running in your cluster:
When provided with the relay-chain Sudo account, the testnet-manager can perform the following actions:
python -m pytest
Note that running with those commands will fail to connect to your Kubernetes cluster and running nodes without adapting them to your setup. As such, it is recommended to refer to the next section for instructions to run a complete local stack in Kubernetes.
Setup the local environment:
poetry install
poetry shell
Set environment variables, eg:
NAMESPACE=rococo
HEALTHY_MIN_PEER_COUNT="1"
RELAY_CHAIN_RPC_URL="wss://rococo-rpc.polkadot.io"
RPC_NODE_URL_PATTERN="NODE_NAME.rococo:9944"
HEALTHY_MIN_PEER_COUNT="1"
SUDO_SEED=***
DERIVATION_ROOT_SEED=***
RELAY_CHAIN_CONSENSUS=poa
Start the app:
# Dev
poetry run uvicorn main:app --reload
# Prod
python -m gunicorn -k uvicorn.workers.UvicornWorker main:app --bind 0.0.0.0:5000 --timeout=3600 --capture-output --enable-stdio-inheritance --workers 4
Install either Minikube or Rancher-Desktop. Then, start your Kubernetes cluster in a VM and run:
cd local-kubernetes
make setup
make apply
Remark: Wait for the "setup" step (chainspec building) to complete before installing to prevent the nodes from failing to pull chainspecs files. For more information see helm/minikube/README.md
Continuously deploy to Kubernetes with Skaffold:
skaffold dev