aboutsummaryrefslogtreecommitdiffstats
path: root/opnfv/installer_adapters/fuel/example.py
diff options
context:
space:
mode:
authorjose.lausuch <jose.lausuch@ericsson.com>2016-11-17 11:35:39 +0100
committerjose.lausuch <jose.lausuch@ericsson.com>2016-11-17 14:06:09 +0100
commitfdf8cd017eb17a1cf9eaeff7018cbb69e838b891 (patch)
tree9aa9d9784a090df52e06913a8e7e5600190788b2 /opnfv/installer_adapters/fuel/example.py
parent9de1ded9cf18dfce75d1a85c54242c74e3133fcd (diff)
Transform fetch_os_creds.sh into python Class
JIRA: RELENG-168 Change-Id: Id5b1fca430c37917b554a54dd0678d9d7497dc11 Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'opnfv/installer_adapters/fuel/example.py')
-rw-r--r--opnfv/installer_adapters/fuel/example.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/opnfv/installer_adapters/fuel/example.py b/opnfv/installer_adapters/fuel/example.py
index 804d79c..7fea4df 100644
--- a/opnfv/installer_adapters/fuel/example.py
+++ b/opnfv/installer_adapters/fuel/example.py
@@ -1,12 +1,12 @@
# This is an example of usage of this Tool
# Author: Jose Lausuch (jose.lausuch@ericsson.com)
-from InstallerHandler import InstallerHandler
+import opnfv.installer_adapters.InstallerHandler as ins_handler
-fuel_handler = InstallerHandler(installer='fuel',
- installer_ip='10.20.0.2',
- installer_user='root',
- installer_pwd='r00tme')
+fuel_handler = ins_handler.InstallerHandler(installer='fuel',
+ installer_ip='10.20.0.2',
+ installer_user='root',
+ installer_pwd='r00tme')
print("Nodes in cluster 1:\n%s\n" %
fuel_handler.get_nodes(options={'cluster': '1'}))
print("Nodes in cluster 2:\n%s\n" %