diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2020-01-30 13:33:35 -0500 |
---|---|---|
committer | Parker Berberian <pberberian@iol.unh.edu> | 2020-01-30 16:12:18 -0500 |
commit | 078273eb7db5a481a4131d44a943f3c9e34b6b88 (patch) | |
tree | 9e6e569e18712d77b8a65c6ebf4dda50ade1b55a /src/templates/dashboard/idf.yaml | |
parent | 899e1a4baa95d0bc6f0eef34de66f0e257174878 (diff) |
Adds Template Overrides
Changes the structure of the template directories to allow
a new project to define their own set of override templates
that inherit from a common base.
I have slightly modified landing.html here as an example.
In comming changes we will try to move all the "laas" specific
content into the laas directory
Change-Id: I46151be182de901f870debb247b305ea34ae77ba
Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
Diffstat (limited to 'src/templates/dashboard/idf.yaml')
-rw-r--r-- | src/templates/dashboard/idf.yaml | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/src/templates/dashboard/idf.yaml b/src/templates/dashboard/idf.yaml deleted file mode 100644 index 9e0cc26..0000000 --- a/src/templates/dashboard/idf.yaml +++ /dev/null @@ -1,46 +0,0 @@ ---- -idf: - version: {{version|default:"0.1"}} - net_config: - oob: - ip-range: {{net_config.oob.ip_range}} - vlan: {{net_config.oob.vlan}} - admin: - interface: {{net_config.admin.interface}} - vlan: {{net_config.admin.vlan}} - network: {{net_config.admin.network}} - mask: {{net_config.admin.mask}} - mgmt: - interface: {{net_config.mgmt.interface}} - vlan: {{net_config.mgmt.vlan}} - network: {{net_config.mgmt.network}} - mask: {{net_config.mgmt.mask}} - private: - interface: {{net_config.private.interface}} - vlan: {{net_config.private.vlan}} - network: {{net_config.private.network}} - mask: {{net_config.private.mask}} - public: - interface: {{net_config.public.interface}} - vlan: {{net_config.public.vlan}} - network: {{net_config.public.network}} - mask: {{net_config.public.mask}} - ip-range: {{net_config.public.ip_range}} - mask: {{net_config.public.mask}} - gateway: {{net_config.public.gateway}} - dns: {% for serv in net_config.public.dns %} - - {{serv}}{% endfor %} - fuel: - jumphost: - bridges: - admin: {{fuel.jumphost.bridges.admin}} - mgmt: {{fuel.jumphost.bridges.mgmt}} - private: {{fuel.jumphost.bridges.private}} - public: {{fuel.jumphost.bridges.public}} - network: {% for node in fuel.network.nodes %} - node: - - interfaces: {% for iface in node.interfaces %} - - {{ iface }}{% endfor %} - - busaddr: {% for addr in node.bus_addrs %} - - {{addr}}{% endfor %} - {% endfor %} |