{% extends "base.html.j2" %} {% block title %}ONAP Certificates expiration page{% endblock %} {% block content %}

ONAP Certificates

Node ports

{% for cert in node_ports_list %} 389 %} class="has-background-warning-light" {%elif cert.remaining_days == 364 and cert.validity %} class="has-background-success-light" {% endif %}> {% endfor %}
Component Port Expected Expiration Date Remaining Days Root CA Root CA Validity
{{ cert.pod_name }} {{ cert.pod_port }} {{ cert.expiration_date }} {{ cert.remaining_days }} {{ cert.issuer }} {% if cert.validity %} {% else %} {% endif %}
{% if node_ports_ssl_error_list|length > 0 %}

Node ports SSL errors

{% for cert in node_ports_ssl_error_list %} {% endfor %}
Component Port Error Details
{{ cert.pod_name }} {{ cert.pod_port }} {{ cert.error_details }}
{% endif %} {% if node_ports_connection_error_list|length > 0 %}

Node ports Connection errors

{% for cert in node_ports_connection_error_list %} {% endfor %}
Component Port Error Details
{{ cert.pod_name }} {{ cert.pod_port }} {{ cert.error_details }}
{% endif %} {% if node_ports_list_type_error_list|length > 0 %}

Node ports Type Error

{% for cert in node_ports_list_type_error_list %} {% endfor %}
Component Port Error Details
{{ cert.pod_name }} {{ cert.pod_port }} {{ cert.error_details }}
{% endif %} {% if node_ports_reset_error_list|length > 0 %}

Node ports Connections Error

{% for cert in node_ports_reset_error_list %} {% endfor %}
Component Port Error Details
{{ cert.pod_name }} {{ cert.pod_port }} {{ cert.error_details }}
{% endif %} {% endblock %}