diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2016-11-17 11:35:39 +0100 |
---|---|---|
committer | jose.lausuch <jose.lausuch@ericsson.com> | 2016-11-17 14:06:09 +0100 |
commit | 6feca8823b63573d0ba5e67a3098c7745a068649 (patch) | |
tree | ece6e663c91e5b82e1b2ae25d84af4772a8c4ab7 /modules/opnfv/installer_adapters/fuel/example.py | |
parent | 387600a6d881bfdc046772b2a3cfbfb59fd2469c (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 'modules/opnfv/installer_adapters/fuel/example.py')
-rw-r--r-- | modules/opnfv/installer_adapters/fuel/example.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/opnfv/installer_adapters/fuel/example.py b/modules/opnfv/installer_adapters/fuel/example.py index 804d79c3d..7fea4dfd7 100644 --- a/modules/opnfv/installer_adapters/fuel/example.py +++ b/modules/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" % |