summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthewLi <matthew.lijun@huawei.com>2015-12-22 09:11:52 +0000
committerMatthewLi <matthew.lijun@huawei.com>2015-12-22 09:11:52 +0000
commit1dce10dfe5d2fd8dbbc465ef6c99ed162123a1df (patch)
tree7a7848a0ee62be38fff84587a1e8cbc18a7b9aec
parent51de3c47c39f9f3a22108320d3b94a0f16723a0b (diff)
amend heat template instance creation script
JIRA: BOTTLENECK-35 Change-Id: I98f17848245647ecf5e77dd0f087656837c90a61 Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
-rwxr-xr-xutils/infra_setup/heat_template/HOT_create_instance.sh10
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