You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: add topology-aware multicluster provisioning support
* rebased branch with master
* activate cluster when all snode health is true
---------
Co-authored-by: Manohar Reddy <manohar@simplyblock.io>
online_nodes = [node for node in node_statuses if node.get('status') == 'online' and len(node.get('nvme_devices'))>0]
42
+
online_nodes = [node for node in node_statuses if node.get('status') == 'online' and node.get('health_check') == True and len(node.get('nvme_devices'))>0]
43
43
44
44
if len(online_nodes) >= total_nodes and len(online_nodes) >= total_value :
0 commit comments