{% with state=cluster.get_state %}
{{ cluster.cluster_name }}
{% if display_warnings %}
{% if not region_has_images or state == "Disconnected" or state == "Out-of-sync" %}
{% endif %}
{% endif %}
|
{% if state == "Disconnected" %}
✗
{% else %}
✓
{% endif %}
|
{{ cluster.get_managed_interfaces|length }}
|
{{ cluster.node_set.count }} |
{% if not region_has_images %}
No images available
{% else %}
{% if state == "Disconnected" %}
-
{% else %}
{% if state == "Syncing" %}
{% endif %}
{{ state }}
{% endif %}
{% endif %}
|
{% endwith %}
|