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

All Pods

{% if links['pod']: %} {% endif %} {% for cluster_id, summary in cluster_summaries.items(): %} {% for namespace_name, pod in summary.pods.items(): %} {% if links['pod']: %} {% endif %} {%endfor %} {%endfor %}
Cluster Namespace Name Application Component CR MR CPU Memory (MiB) Cost
{{ summary.cluster.name }} {{ namespace_name[0] }} {{ namespace_name[1] }} {{ pod.application }} {{ pod.component }} {{ pod.requests.cpu|round(3) }} {{ pod.requests.memory|filesizeformat(True) }} {{ elements.resource_bar_cpu(pod) }} {{ elements.resource_bar_memory(pod) }} {{ pod.cost|money }}
{% endblock %}