summaryrefslogtreecommitdiffstats
path: root/roles/openshift_certificate_expiry/templates/cert-expiry-table.html.j2
blob: b05110336c31d8686946cb75e7798538cd88ce47 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title>OCP Certificate Expiry Report</title>
    {# For fancy icons and a pleasing font #}
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700" rel="stylesheet" />
    <style type="text/css">
      body {
      font-family: 'Source Sans Pro', sans-serif;
      margin-left: 50px;
      margin-right: 50px;
      margin-bottom: 20px;
      padding-top: 70px;
      }
      table {
      border-collapse: collapse;
      margin-bottom: 20px;
      }
      table, th, td {
      border: 1px solid black;
      }
      th, td {
      padding: 5px;
      }
      .cert-kind {
      margin-top: 5px;
      margin-bottom: 5px;
      }
      footer {
      font-size: small;
      text-align: center;
      }
      tr.odd {
      background-color: #f2f2f2;
      }
    </style>
  </head>
  <body>
    <nav class="navbar navbar-default navbar-fixed-top">
      <div class="container-fluid">
        <div class="navbar-header">
          <a class="navbar-brand" href="#">OCP Certificate Expiry Report</a>
        </div>
        <div class="collapse navbar-collapse">
          <p class="navbar-text navbar-right">
	    <a href="https://docs.openshift.com/container-platform/latest/install_config/redeploying_certificates.html"
	       target="_blank"
	       class="navbar-link">
	       <i class="glyphicon glyphicon-book"></i> Redeploying Certificates
	    </a>
	  </p>
        </div>
      </div>
    </nav>

    {# Each host has a header and table to itself #}
    {% for host in play_hosts %}
      <h1>{{ host }}</h1>

      <p>
        {{ hostvars[host].check_results.msg }}
      </p>
      <ul>
        <li><b>Expirations checked at:</b> {{ hostvars[host].check_results.check_results.meta.checked_at_time }}</li>
        <li><b>Warn after date:</b> {{ hostvars[host].check_results.check_results.meta.warn_before_date }}</li>
      </ul>

      <table border="1" width="100%">
        {# These are hard-coded right now, but should be grabbed dynamically from the registered results #}
        {%- for kind in ['ocp_certs', 'etcd', 'kubeconfigs', 'router', 'registry'] -%}
          <tr>
            <th colspan="6" style="text-align:center"><h2 class="cert-kind">{{ kind }}</h2></th>
          </tr>

          <tr>
            <th>&nbsp;</th>
            <th style="width:33%">Certificate Common/Alt Name(s)</th>
            <th>Health</th>
            <th>Days Remaining</th>
            <th>Expiration Date</th>
            <th>Path</th>
          </tr>

          {# A row for each certificate examined #}
          {%- for v in hostvars[host].check_results.check_results[kind] -%}

            {# Let's add some flair and show status visually with fancy icons #}
            {% if v.health == 'ok' %}
              {% set health_icon = 'glyphicon glyphicon-ok' %}
            {% elif v.health == 'warning' %}
              {% set health_icon = 'glyphicon glyphicon-alert' %}
            {% else %}
              {% set health_icon = 'glyphicon glyphicon-remove' %}
            {% endif %}

            <tr class="{{ loop.cycle('odd', 'even') }}">
              <td style="text-align:center"><i class="{{ health_icon }}"></i></td>
              <td style="width:33%">{{ v.cert_cn }}</td>
              <td>{{ v.health }}</td>
              <td>{{ v.days_remaining }}</td>
              <td>{{ v.expiry }}</td>
              <td>{{ v.path }}</td>
            </tr>
          {% endfor %}
          {# end row generation per cert of this type #}
        {% endfor %}
        {# end generation for each kind of cert block #}
      </table>
      <hr />
    {% endfor %}
    {# end section generation for each host #}

    <footer>
      <p>
        Expiration report generated by <a href="https://github.com/openshift/openshift-ansible" target="_blank">openshift-ansible</a>
      </p>
      <p>
        Status icons from bootstrap/glyphicon
      </p>
    </footer>
  </body>
</html>