aboutsummaryrefslogtreecommitdiffstats
path: root/opnfv/deployment/example.py
diff options
context:
space:
mode:
authorhelenyao <yaohelan@huawei.com>2017-03-24 11:32:19 +0800
committerhelenyao <yaohelan@huawei.com>2017-03-31 17:01:36 +0800
commit4862069b743b24bfc6478102a2a3872d9178838d (patch)
treef68362079aa4730d663ec106b787c6ac8a6618d2 /opnfv/deployment/example.py
parentb6594c4206197b21677935bd732755a653824ad3 (diff)
Compass Adapter to get deployment information
result of example.py for Compass(ODL enabled) can be refered here https://pastebin.com/k3UW9bUJ Change-Id: I56352d71152078a44d706d97c67fb8d69b20ad2d Signed-off-by: helenyao <yaohelan@huawei.com>
Diffstat (limited to 'opnfv/deployment/example.py')
-rw-r--r--opnfv/deployment/example.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/opnfv/deployment/example.py b/opnfv/deployment/example.py
index 3999a11..52d9b56 100644
--- a/opnfv/deployment/example.py
+++ b/opnfv/deployment/example.py
@@ -34,3 +34,17 @@ print("List of nodes in cluster 4:")
nodes = handler.get_nodes({'cluster': '4'})
for node in nodes:
print(node)
+
+
+print("########## COMPASS ##########")
+handler = factory.Factory.get_handler('compass',
+ '192.168.200.2',
+ 'root',
+ installer_pwd='root')
+
+print(handler.get_deployment_status())
+print(handler.get_deployment_info())
+print('Details of each node:')
+nodes = handler.nodes
+for node in nodes:
+ print(node)