{% load i18n %} {% load icon_helpers %}

{{ node.power_state|iconized_ironic_node_state|safe }}

{% trans "Inventory" %}

{% trans "Node UUID" %}
{{ node.uuid|default:"—" }}
{% trans "Driver" %}
{{ node.driver|default:"—" }}
{% if node.driver == 'pxe_ssh' %}
IP Address
{{ node.driver_info.ssh_address|default:"—" }}
IPMI User
{{ node.driver_info.ssh_username|default:"—" }}
SSH Key
{{ node.driver_info.ssh_key_contents|default:"—" }}
{% else %}
IP Address
{{ node.driver_info.ipmi_address|default:"—" }}
IPMI User
{{ node.driver_info.ipmi_username|default:"—" }}
IPMI Password
{% endif %}
{% trans "Network Cards" %}
{% blocktrans count addresses_length=node.addresses|length %} {{ addresses_length }} interface {% plural %} {{ addresses_length }} interfaces {% endblocktrans %}
    {% for address in node.addresses %}
  • {{ address }}
  • {% endfor %}
{% trans "Registered HW" %}
{{ node.cpu_arch|default:"—" }}
{{ node.cpus|default:"—" }} {% trans "CPU" %}
{{ node.memory_mb|default:"—" }} {% trans "RAM (MB)" %}
{{ node.local_gb|default:"—" }} {% trans "HDD (GB)" %}

{% trans "Deployment" %}

{% trans "Deployment Role" %}
{% if stack and role %}
{{ role.name }}
{% else %}
{% endif %}
{% trans "Provisioning" %}
{{ node.provisioning_status|default:"—" }} {% if node.instance_uuid %}
{{ node.instance.created }} {% endif %}
{% trans "Image" %}
{{ node.image_name|default:"—" }}
{% trans "Instance UUID" %}
{{ node.instance_uuid|default:"—" }}

{% trans "Deployment Images" %}

{% trans "Kernel" %}
{{ kernel_image.name|default:"—" }}
{% trans "Ramdisk" %}
{{ ramdisk_image.name|default:"—" }}

{% trans "Performance & Metrics" %}

{% url 'horizon:infrastructure:nodes:performance' node.uuid as node_perf_url %} {% include "infrastructure/_performance_chart_box.html" with meter_conf=meter_conf node_perf_url=node_perf_url col_size=6 %}
{% block additional_data %} {% endblock %}