diff options
author | 2016-08-08 15:53:33 -0700 | |
---|---|---|
committer | 2016-08-08 15:53:33 -0700 | |
commit | 86acad243cc90a710bcec1658562a314ba4aa33b (patch) | |
tree | 291d7f033b8bd79412653f53f35da2d1cb9b3e1d | |
parent | 1e955530d68c370719b81bea9707bb3704c08c77 (diff) |
Fixes to manager use case test
JIRA: MODELS-23
Change-Id: I21b9f5691f5dc027eb67d1e82668f2c5a745d9fb
Signed-off-by: blsaws <bryan.sullivan@att.com>
-rw-r--r-- | tests/vHello.sh | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/vHello.sh b/tests/vHello.sh index ff9d38f..f5dd023 100644 --- a/tests/vHello.sh +++ b/tests/vHello.sh @@ -64,7 +64,7 @@ select_manager() { start() { echo "vHello.sh: reset blueprints folder" if [[ -d /tmp/cloudify/blueprints ]]; then rm -rf /tmp/cloudify/blueprints; fi - mkdir /tmp/cloudify/blueprints + mkdir -p /tmp/cloudify/blueprints cd /tmp/cloudify/blueprints echo "vHello.sh: clone cloudify-hello-world-example" @@ -85,11 +85,11 @@ agent_user: centos webserver_port: 8080 EOF -# Workarounds for error in allocating floating IP -# Workflow failed: Task failed 'neutron_plugin.floatingip.create' -> Failed to parse request. Required attribute 'floating_network_id' not specified [status_code=400] - get_floating_net - if [[ "$1" == "cloudify-cli" ]]; then + # Workarounds for error in allocating floating IP + # Workflow failed: Task failed 'neutron_plugin.floatingip.create' -> Failed to parse request. Required attribute 'floating_network_id' not specified [status_code=400] + get_floating_net + echo "vHello.sh: update blueprint with parameters needed for Cloudify CLI use" cat <<EOF >>vHello-inputs.yaml external_network_name: $floating_network_name @@ -135,7 +135,6 @@ EOF if [ $? -eq 1 ]; then fail; fi echo "vHello.sh: create vHello deployment via manager" - cd /tmp/cloudify/blueprints/cloudify-hello-world-example cfy deployments create --debug -d vHello -i vHello-inputs.yaml -b cloudify-hello-world-example if [ $? -eq 1 ]; then fail; fi |