summaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/tests/asserts
diff options
context:
space:
mode:
authorNate Potter <nathaniel.potteR@intel.com>2018-01-17 09:29:35 -0800
committerNate Potter <nathaniel.potteR@intel.com>2018-01-18 06:01:07 -0800
commitfdf88f32579d606cd82deadd3c89fac77b6aa472 (patch)
treeae120553c8eaf915e0383f194e2ec233a6c2b968 /bootstrap/vagrant-onap/tests/asserts
parent65759ac8168e02a91bdb1fa9de9b297feb61f362 (diff)
Add kolla internal vip to no_proxy
The internal vip value is calculated at deploy time when bringing up the OpenStack VM, and isn't able to be included in the proxy values in the Vagrantfile. Because of this, we need to add it to no_proxy after it's calculated so that users and other services can access it in a proxy environment. Signed-off-by: Nathaniel Potter <nathaniel.potter@intel.com> Issue-ID: INT-383 Change-Id: Ifed792a4f7e6f4f5a227848486e8165be4a30fc7
Diffstat (limited to 'bootstrap/vagrant-onap/tests/asserts')
-rwxr-xr-xbootstrap/vagrant-onap/tests/asserts10
1 files changed, 10 insertions, 0 deletions
diff --git a/bootstrap/vagrant-onap/tests/asserts b/bootstrap/vagrant-onap/tests/asserts
index 8eda3ce25..441b9f091 100755
--- a/bootstrap/vagrant-onap/tests/asserts
+++ b/bootstrap/vagrant-onap/tests/asserts
@@ -77,6 +77,16 @@ function asserts_file_exist {
fi
}
+# asserts_env_set() - Function that verities that an environment variable is set
+function asserts_env_set {
+ local variable=$1
+ local error_msg=${2:-"$variable wasn't set"}
+
+ if [ -z ${variable+x} ]; then
+ raise_error $error_msg
+ fi
+}
+
# raise_error() - Function that prints and exits the execution
function raise_error {
echo $@