istanbul-tools/benchmark/kubernetes/deploy-static-nodes

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", "static-nodes-{}".format(v), "--set", "fileName=static-nodes.{}.json,nameOverride=static-nodes-{}".format(v, v), "static-nodes"])