From 3da22ca992d68fd8d807a51c1117150d81ff4e31 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Wed, 27 Sep 2017 10:06:12 -0500 Subject: [PATCH] Allow for the use of an external inventory It makes sense to allow a user to provide their own inventory as needed. this change simply allows a user to explort the option "MNAIO_INVENTORY" prior to running `build.sh` which will allow them to define their own inventory using the general purpose build script. Change-Id: Ib5233da1bf34620ec8bf3decc4ecd51823b50b79 Signed-off-by: Kevin Carter --- multi-node-aio/README.rst | 4 ++++ multi-node-aio/build.sh | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/multi-node-aio/README.rst b/multi-node-aio/README.rst index 33935618..12b2beb1 100644 --- a/multi-node-aio/README.rst +++ b/multi-node-aio/README.rst @@ -95,6 +95,10 @@ to change this password please edit the pre-seed files. ``build.sh`` Options -------------------- +Set an external inventory used for the MNAIO: + ``MNAIO_INVENTORY=${MNAIO_INVENTORY:-playbooks/inventory}`` + + Set to instruct the preseed what the default network is expected to be: ``DEFAULT_NETWORK="${DEFAULT_NETWORK:-eth0}"`` diff --git a/multi-node-aio/build.sh b/multi-node-aio/build.sh index fd678a6b..831deff2 100755 --- a/multi-node-aio/build.sh +++ b/multi-node-aio/build.sh @@ -20,12 +20,12 @@ source bootstrap.sh source ansible-env.rc ansible mnaio_hosts \ - -i playbooks/inventory \ + -i ${MNAIO_INVENTORY:-"playbooks/inventory"} \ -m pip \ -a "name=netaddr" ansible-playbook -vv \ - -i playbooks/inventory \ + -i ${MNAIO_INVENTORY:-"playbooks/inventory"} \ -e setup_host=${SETUP_HOST:-"true"} \ -e setup_pxeboot=${SETUP_PXEBOOT:-"true"} \ -e setup_dhcpd=${SETUP_DHCPD:-"true"} \