#!/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"])