istanbul-tools/benchmark/kubernetes/deploy-transactors

7 lines
241 B
Python
Executable File

#!/usr/bin/env python
from subprocess import call
for v in range(1, 14, 1):
call(["helm", "install", "-n", "transactor-{}".format(v), "--set", "ethereum.staticNodes.config=static-nodes,nameOverride=istanbul-{}".format(v), "transactor"])