Fetch Nova instance's private IP 33/52933/8
authorDimitrios Markou <mardim@intracom-telecom.com>
Thu, 1 Mar 2018 12:17:50 +0000 (14:17 +0200)
committerDimitrios Markou <mardim@intracom-telecom.com>
Thu, 8 Mar 2018 12:14:46 +0000 (14:14 +0200)
Add the capability to fetch the private IP of a Nova
instance through the operation perspective.

JIRA: YARDSTICK-1040

Change-Id: Idc3d62bcd3f477a03a89f7dcc8d8616f3cfa2742
Signed-off-by: Dimitrios Markou <mardim@intracom-telecom.com>
yardstick/benchmark/scenarios/availability/ha_tools/nova/get_server_privateip.bash [new file with mode: 0644]
yardstick/benchmark/scenarios/availability/operation_conf.yaml

diff --git a/yardstick/benchmark/scenarios/availability/ha_tools/nova/get_server_privateip.bash b/yardstick/benchmark/scenarios/availability/ha_tools/nova/get_server_privateip.bash
new file mode 100644 (file)
index 0000000..7f2bad5
--- /dev/null
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+##############################################################################
+# Copyright (c) 2018 Intracom Telecom and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+
+# get private ip of a server
+# parameter: $1 - server name
+
+set -e
+
+if [ $OS_INSECURE ] && [ "$(echo $OS_INSECURE | tr '[:upper:]' '[:lower:]')" = "true" ]; then
+    SECURE="--insecure"
+else
+    SECURE=""
+fi
+
+openstack ${SECURE} server list -f value -c Name -c Networks | grep $1 | awk '{print $2}' | sed -r 's/.*=([0-9\.\:]+)[;,]*/\1/'
+
index cee63fb..5f3f6c9 100644 (file)
@@ -42,3 +42,7 @@ start-service:
 add-server-to-secgroup:
   action_script: ha_tools/nova/add_server_to_existing_secgroup.bash
   rollback_script: ha_tools/nova/remove_server_from_secgroup.bash
+
+get-privateip:
+  action_script: ha_tools/nova/get_server_privateip.bash
+  rollback_script: ha_tools/nova/list_servers.bash