Merge "Make env variables accessible in template files"

This commit is contained in:
Zuul 2017-11-13 10:38:46 +00:00 committed by Gerrit Code Review
commit 35fd42d9ce
1 changed files with 1 additions and 1 deletions

View File

@ -875,7 +875,7 @@ class KollaWorker(object):
env.filters.update(self._get_filters())
env.globals.update(self._get_methods())
template = env.get_template(template_name)
content = template.render(values)
content = template.render(values, env=os.environ)
content_path = os.path.join(path, 'Dockerfile')
with open(content_path, 'w') as f:
LOG.debug("Rendered %s into:", tpl_path)