{% extends "base.html" %} {% block title %}Buckets — nanio-orchestrator{% endblock %} {% block content %}

Bucket Management

{% for v in vhosts %}

{{ v.server_name }}

{% for b in v.buckets %} {% endfor %} {% if not v.buckets %} {% endif %}
BucketStatusPoolDiscoveredActions
{{ b.bucket }} {% if b.status == 'unrouted' %}unrouted {% elif b.status == 'routed' %}routed {% elif b.status == 'migrating' %}migrating {% elif b.status == 'ignored' %}ignored {% else %}{{ b.status }}{% endif %} {{ b.pool_name or '—' }} {{ b.discovered_at or '—' }} {% if b.status in ('unrouted', 'ignored') %} {% endif %} {% if b.status == 'unrouted' %} {% endif %}
No buckets synced yet — click Sync
{% endfor %} {% if not vhosts %}

No vhosts with a nanio default pool configured.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}