{% extends "base.html" %} {% block title %}Namespaces{% endblock %} {% block content %}

All Namespaces

{% if links['namespace']: %} {% endif %} {% for namespace_id, namespace_data in namespace_usage.items()|sort: %} {% if links['namespace']: %} {% endif %} {%endfor %}
ID A? Cluster P CR MR CPU Memory (MiB) Cost Slack Cost
{{ namespace_id[0] }} {% if namespace_data.status is not none: %} {% if namespace_data.status == "Active": %} {% else: %} {% endif %} {% endif %} {{ namespace_data.cluster.name }} {{ namespace_data.pods }} {{ namespace_data.requests.cpu|round(3) }} {{ namespace_data.requests.memory|filesizeformat(True) }} {{ elements.resource_bar_cpu(namespace_data) }} {{ elements.resource_bar_memory(namespace_data) }} {{ namespace_data.cost|money }} {{ namespace_data.slack_cost|money }}
{% endblock %}