diff options
Diffstat (limited to 'mcp')
-rw-r--r-- | mcp/scripts/.gitignore | 1 | ||||
-rw-r--r-- | mcp/scripts/xdf_data.sh.j2 | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/mcp/scripts/.gitignore b/mcp/scripts/.gitignore index b235933e2..89af7c473 100644 --- a/mcp/scripts/.gitignore +++ b/mcp/scripts/.gitignore @@ -1 +1,2 @@ user-data.*.sh +xdf_data.sh diff --git a/mcp/scripts/xdf_data.sh.j2 b/mcp/scripts/xdf_data.sh.j2 new file mode 100644 index 000000000..9479f2356 --- /dev/null +++ b/mcp/scripts/xdf_data.sh.j2 @@ -0,0 +1,20 @@ +#!/bin/bash -e +############################################################################## +# Copyright (c) 2018 Mirantis Inc., Enea AB and others. +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +# +# Data derived from XDF (PDF/IDF/SDF/etc), used as input in deploy.sh +# + +# Determine bridge names based on IDF, where all bridges are now mandatory +{%- set bridges = conf.idf.fuel.jumphost.bridges %} +OPNFV_BRIDGES=( + '{{ bridges.admin or "pxebr" }}' + '{{ bridges.mgmt or "mgmt" }}' + '{{ bridges.private or "internal" }}' + '{{ bridges.public or "public" }}' +) |