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

All Nodes

{% if links['node']: %} {% endif %} {% for node_id, node in nodes.items()|sort: %} {% if links['node']: %} {% endif %} {%endfor %}
Cluster Name Role Instance Type S? Version CC MC CPU Memory (GiB) Cost
{{ node.cluster_name }} {{ node.node_name }} {{ node.role }} {{ node.instance_type }} {% if node.spot: %} {% endif %} {{ node.kubelet_version }} {{ node.capacity.cpu|round(1) }} {{ node.capacity.memory|filesizeformat(True) }}
{{ node.usage.cpu|round(1) }} {{ node.requests.cpu|round(1) }} {{ node.allocatable.cpu|round(1) }}
{{ node.usage.memory|memory('GiB') }} {{ node.requests.memory|memory('GiB') }} {{ node.allocatable.memory|memory('GiB') }}
{{ node.cost|money }}
{% endblock %}