diff --git a/helpers/helpers.py b/helpers/helpers.py index 19349b1f9..9af447a94 100644 --- a/helpers/helpers.py +++ b/helpers/helpers.py @@ -9,7 +9,7 @@ def helm_template(config): with tempfile.NamedTemporaryFile() as temp: with open(temp.name, "w") as values: values.write(config) - helm_cmd = "helm template -f {0} ./".format(temp.name) + helm_cmd = "helm template -f {0} --namespace default ./".format(temp.name) result = yaml.load_all(check_output(helm_cmd.split())) results = {}