diff options
author | MatthewLi <matthew.lijun@huawei.com> | 2015-12-22 09:11:52 +0000 |
---|---|---|
committer | MatthewLi <matthew.lijun@huawei.com> | 2015-12-22 09:11:52 +0000 |
commit | 1dce10dfe5d2fd8dbbc465ef6c99ed162123a1df (patch) | |
tree | 7a7848a0ee62be38fff84587a1e8cbc18a7b9aec /utils/infra_setup/heat_template/HOT_create_instance.sh | |
parent | 51de3c47c39f9f3a22108320d3b94a0f16723a0b (diff) |
amend heat template instance creation script
JIRA: BOTTLENECK-35
Change-Id: I98f17848245647ecf5e77dd0f087656837c90a61
Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
Diffstat (limited to 'utils/infra_setup/heat_template/HOT_create_instance.sh')
-rwxr-xr-x | utils/infra_setup/heat_template/HOT_create_instance.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/utils/infra_setup/heat_template/HOT_create_instance.sh b/utils/infra_setup/heat_template/HOT_create_instance.sh index 43d729f0..49fa5e81 100755 --- a/utils/infra_setup/heat_template/HOT_create_instance.sh +++ b/utils/infra_setup/heat_template/HOT_create_instance.sh @@ -2,10 +2,8 @@ set -ex -bottlenecks_create_instance() +bottlenecks_env_prepare() { - echo "create bottlenecks instance using heat template" - if [ -d $BOTTLENECKS_REPO_DIR ]; then rm -rf ${BOTTLENECKS_REPO_DIR} fi @@ -15,6 +13,11 @@ bottlenecks_create_instance() git clone ${BOTTLENECKS_REPO} ${BOTTLENECKS_REPO_DIR} source $BOTTLENECKS_REPO_DIR/rubbos/rubbos_scripts/1-1-1/scripts/env_preparation.sh +} + +bottlenecks_create_instance() +{ + echo "create bottlenecks instance using heat template" echo "upload keypair" nova keypair-add --pub_key $KEY_PATH/bottleneck_key.pub $KEY_NAME @@ -112,6 +115,7 @@ main() #need FIX #IMAGE_FILE_NAME="" + bottlenecks_env_prepare #bottlenecks_cleanup #bottlenecks_build_image bottlenecks_load_cirros_image |