aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/templates/status/statefulset.html.j2
blob: 1aac8ebd24674610c416294b79c778c33843b354 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html.j2" %}
{% block title %}StatefulSet {{ statefulset.name }}{% endblock %}
{% block content %}
    {{ two_level_breadcrumb('StatefulSet', statefulset.name) | indent(width=4) }}

    {{ pod_parent_summary('StatefulSet', statefulset.name, statefulset.failed_pods, statefulset.pods) }}

    <section class="section">
      {{ description(statefulset.k8s) | indent(width=6) }}

      {{ pods_container(statefulset.pods, "StatefulSet") | indent(width=6) }}

    {{ events(statefulset.events) }}
    </section>
{% endblock %}