Set maintenance colour in cluster detail
This commit is contained in:
parent
45ad3b9a17
commit
a49f3810d3
|
@ -585,7 +585,9 @@ def cluster_detail():
|
||||||
volumes = "N/A"
|
volumes = "N/A"
|
||||||
snapshots = "N/A"
|
snapshots = "N/A"
|
||||||
else:
|
else:
|
||||||
if cluster_details["data"]["cluster_health"]["health"] > 90:
|
if cluster_details["data"]["maintenance"] == "true":
|
||||||
|
health_colour = ansiprint.blue()
|
||||||
|
elif cluster_details["data"]["cluster_health"]["health"] > 90:
|
||||||
health_colour = ansiprint.green()
|
health_colour = ansiprint.green()
|
||||||
elif cluster_details["data"]["cluster_health"]["health"] > 50:
|
elif cluster_details["data"]["cluster_health"]["health"] > 50:
|
||||||
health_colour = ansiprint.yellow()
|
health_colour = ansiprint.yellow()
|
||||||
|
|
Loading…
Reference in New Issue