blob: 31b239ab9cc1bf91c7ede9dd06aaa31cc591ab37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{% extends "base.html.j2" %}
{% block title %}Service {{ service.name }}{% endblock %}
{% block content %}
{{ two_level_breadcrumb('Service', service.name) | indent(width=4) }}
{{ pod_parent_summary('Service', service.name, service.failed_pods, service.pods) }}
<section class="section">
{{ description(service.k8s) | indent(width=6) }}
{{ pods_container(service.pods, "Service") | indent(width=6) }}
<div class="container">
<h1 class="title is-1">Ports</h1>
{% if service.k8s.spec.ports %}
<div id="ports" class="table-container">
<table class="table is-fullwidth is-striped is-hoverable">
<thead>
<tr>
<th>Name</th>
<th>Port</th>
<th>Node Port</th>
<th>Target Port</th>
<th>Protocol</th>
</tr>
</thead>
<tbody>
{% for port in service.k8s.spec.ports %}
<tr>
<td>{{ port.name }}</td>
<td>{{ port.port }}</td>
<td>{{ port.node_port }}</td>
<td>{{ port.target_port }}</td>
<td>{{ port.protocol }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% else %}
<div class="notification is-warning">Service has no ports!</div>
{% endif %}
</div>
</section>
{% endblock %}
|