summaryrefslogtreecommitdiffstats
path: root/deploy/templater.py
diff options
context:
space:
mode:
authorMichal Skalski <mskalski@mirantis.com>2016-08-02 09:19:44 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-08-02 09:19:44 +0000
commit2c8231be1aebe869297aa5ca15870da70338bd68 (patch)
tree7a3b7b55f1243fa049dbe398c5e412a46c2fa002 /deploy/templater.py
parentef0d47da19062f1fd5574fdb97409c290798f800 (diff)
parent8687c10b1a098c9c9f41e68c7f322a5ce6727c40 (diff)
Merge "Make it possible to include files in templates"
Diffstat (limited to 'deploy/templater.py')
-rwxr-xr-xdeploy/templater.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/deploy/templater.py b/deploy/templater.py
index 2ad6e05ba..6b41e1f3c 100755
--- a/deploy/templater.py
+++ b/deploy/templater.py
@@ -107,12 +107,28 @@ class Templater(object):
return self.get_interface_from_network(interfaces, args[0])
+ def parse_include_tag(self, tag):
+ # Remove 'include(' prefix and trailing ')'
+ filename = tag[len('include('):].rstrip(')')
+
+ if not filename:
+ err('No argument for include().')
+
+ return filename
+
+ def include_file(self, filename):
+ fragment = self.load_yaml(filename)
+ return yaml.dump(fragment, default_flow_style=False)
+
def parse_tag(self, tag, indent):
fragment = ''
if 'interface(' in tag:
args = self.parse_interface_tag(tag)
fragment = self.lookup_interface(args)
+ elif 'include(' in tag:
+ filename = self.parse_include_tag(tag)
+ fragment = self.include_file(filename)
else:
path = tag.split(DELIMITER)
fragment = self.base