From dea6521c7b21d8fef861ce881f8451367679842e Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Sat, 3 Mar 2018 20:16:43 +0100 Subject: [deploy.sh] Factor out jump bridge parsing to j2 Change-Id: Ie4d8e70866d533d195a6e80cdfecbdb00a3027ce Signed-off-by: Alexandru Avadanii --- mcp/scripts/.gitignore | 1 + mcp/scripts/xdf_data.sh.j2 | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 mcp/scripts/xdf_data.sh.j2 (limited to 'mcp/scripts') 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" }}' +) -- cgit 1.2.3-korg