diff options
author | Micha? Jagie??o <michal.jagiello@t-mobile.pl> | 2023-05-11 06:23:43 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2023-05-11 06:23:43 +0000 |
commit | 5027f6f3eed3e20fb84950267c625dff693de3b6 (patch) | |
tree | 083c27d4fd07c997d41ad94914eba682661d426f /src/onaptests/templates/status/daemonset.html.j2 | |
parent | 990e68c1017ad3307232d6056cfbfb86ab9c6277 (diff) | |
parent | 14c7c32e293fffb92b6aab7a81c446eaeb087cde (diff) |
Merge "Migration of the healthchecks to gerrit"
Diffstat (limited to 'src/onaptests/templates/status/daemonset.html.j2')
-rw-r--r-- | src/onaptests/templates/status/daemonset.html.j2 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/onaptests/templates/status/daemonset.html.j2 b/src/onaptests/templates/status/daemonset.html.j2 new file mode 100644 index 0000000..2d76280 --- /dev/null +++ b/src/onaptests/templates/status/daemonset.html.j2 @@ -0,0 +1,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 %} |