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

    {{ pod_parent_summary('DaemonSet', daemonset.name, daemonset.failed_pods, daemonset.pods) }}

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

      {{ pods_container(daemonset.pods, "DaemonSet") | indent(width=6) }}

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