diff options
author | Lukasz Rajewski <lukasz.rajewski@t-mobile.pl> | 2023-06-20 18:18:39 +0000 |
---|---|---|
committer | Lukasz Rajewski <lukasz.rajewski@t-mobile.pl> | 2023-06-21 14:52:08 +0000 |
commit | d553ee4c89f602263f7a973654244f61b07fbca5 (patch) | |
tree | 1b4ff17e9cb6cba19adbba9dc2550fe1d2129346 /src/onaptests/templates | |
parent | 66cb2f9168c8a8f0c19e662491019d01f16de146 (diff) |
Namespace status verification 2.0
- separate steps for resource type
- optional version check
- new file with details of failed resources
Issue-ID: INT-2246
Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl>
Change-Id: I538f877ab4d0824fd8dd5e65255c7ecf9545a26b
Diffstat (limited to 'src/onaptests/templates')
-rw-r--r-- | src/onaptests/templates/status/index.html.j2 | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/onaptests/templates/status/index.html.j2 b/src/onaptests/templates/status/index.html.j2 index fe49abf..d85c5bb 100644 --- a/src/onaptests/templates/status/index.html.j2 +++ b/src/onaptests/templates/status/index.html.j2 @@ -297,7 +297,23 @@ {% endif %} {% if (ns.ingresses | length) > 0 %} - <div id="ingresses"></div> + <!-- Ingresses table --> + <div id="ingresses" class="table-container"> + <table class="table is-fullwidth is-striped is-hoverable"> + <thead> + <tr> + <th>Name</th> + </tr> + </thead> + <tbody> + {% for ingress in ns.ingresses %} + <tr> + <td>{{ ingress.name }}</td> + </tr> + {% endfor %} + </tbody> + </table> + </div> {% endif %} </div> |