From f6408b0fd9ac11d531aadcabcb5da6919ef2cf49 Mon Sep 17 00:00:00 2001 From: Shu Yingya Date: Wed, 2 Nov 2016 06:19:21 +0000 Subject: [PATCH] Provide the cluster info about WebUI The new saharaclient based on OSC supports command "openstack dataprocessing cluster show ", however, the output of this command doesn't contain the field "info" which provide cluster management WebUI link address and password related detail. This patch add the "info" filed in the output. Change-Id: I78e2870ffc1af569265f2c4c442fecdd1725a228 Closes-Bug: 1638464 --- saharaclient/osc/v1/clusters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saharaclient/osc/v1/clusters.py b/saharaclient/osc/v1/clusters.py index eb408340..298fd2e8 100644 --- a/saharaclient/osc/v1/clusters.py +++ b/saharaclient/osc/v1/clusters.py @@ -25,7 +25,7 @@ from oslo_serialization import jsonutils from saharaclient.osc.v1 import utils CLUSTER_FIELDS = ["cluster_template_id", "use_autoconfig", "user_keypair_id", - "status", "image", "node_groups", "id", + "status", "image", "node_groups", "id", "info", "anti_affinity", "plugin_version", "name", "is_transient", "is_protected", "description", "is_public", "neutron_management_network", "plugin_name"]