{% extends "base.html" %} {% import "macros/ui.html" as m %} {% block title %}{{ ws_name }} · Clusters{% endblock %} {% block nav_workspaces %}btn-active{% endblock %} {% block content %} {{ m::ws_tabs(ws_name=ws_name, active=ws_active_tab, ws_envs=ws_envs, ws_has_clusters=ws_has_clusters, ws_has_workflows=ws_has_workflows, current_env=current_env) }} {% if clusters %} {% if clusters.items %}
{% for cl in clusters.items %} {% endfor %}
Name Status Version Nodes Location Labels
{{ cl.name }} {% if cl.status == "running" %} running {% elif cl.status == "provisioning" or cl.status == "creating" %} {{ cl.status }} {% elif cl.status == "deleting" %} deleting {% else %} {{ cl.status | default(value="—") }} {% endif %} {{ cl.kubernetes_version | default(value="—") }} {{ cl.nodes_count | default(value="—") }} {% if cl.location %}{{ cl.location }}{% else %}—{% endif %} {% if cl.labels %} {% for k, v in cl.labels %} {{ k }}={{ v }} {% endfor %} {% endif %}

{{ clusters.total | default(value=clusters.items | length) }} cluster(s) — live status

{% else %}
No clusters found for this workspace.
{% endif %} {% else %}
Cluster data unavailable — orchestrator may not be reachable or no cluster provider is configured.
{% endif %} {% endblock %}