cert-expiry-table.html.j2 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>OCP Certificate Expiry Report</title>
  6. {# For fancy icons and a pleasing font #}
  7. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
  8. <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700" rel="stylesheet" />
  9. <style type="text/css">
  10. body {
  11. font-family: 'Source Sans Pro', sans-serif;
  12. margin-left: 50px;
  13. margin-right: 50px;
  14. margin-bottom: 20px;
  15. padding-top: 70px;
  16. }
  17. table {
  18. border-collapse: collapse;
  19. margin-bottom: 20px;
  20. }
  21. table, th, td {
  22. border: 1px solid black;
  23. }
  24. th, td {
  25. padding: 5px;
  26. }
  27. .cert-kind {
  28. margin-top: 5px;
  29. margin-bottom: 5px;
  30. }
  31. footer {
  32. font-size: small;
  33. text-align: center;
  34. }
  35. tr.odd {
  36. background-color: #f2f2f2;
  37. }
  38. </style>
  39. </head>
  40. <body>
  41. <nav class="navbar navbar-default navbar-fixed-top">
  42. <div class="container-fluid">
  43. <div class="navbar-header">
  44. <a class="navbar-brand" href="#">OCP Certificate Expiry Report</a>
  45. </div>
  46. <div class="collapse navbar-collapse">
  47. <p class="navbar-text navbar-right">
  48. <button>
  49. <a href="https://docs.openshift.com/container-platform/latest/install_config/redeploying_certificates.html"
  50. target="_blank"
  51. class="navbar-link">
  52. <i class="glyphicon glyphicon-book"></i> Redeploying Certificates
  53. </a>
  54. </button>
  55. <button>
  56. <a href="https://github.com/openshift/openshift-ansible/tree/master/roles/openshift_certificate_expiry"
  57. target="_blank"
  58. class="navbar-link">
  59. <i class="glyphicon glyphicon-book"></i> Expiry Role Documentation
  60. </a>
  61. </button>
  62. </p>
  63. </div>
  64. </div>
  65. </nav>
  66. {# Each host has a header and table to itself #}
  67. {% for host in ansible_play_hosts %}
  68. <h1>{{ host }}</h1>
  69. <p>
  70. {{ hostvars[host].check_results.msg }}
  71. </p>
  72. <ul>
  73. <li><b>Expirations checked at:</b> {{ hostvars[host].check_results.check_results.meta.checked_at_time }}</li>
  74. <li><b>Warn after date:</b> {{ hostvars[host].check_results.check_results.meta.warn_before_date }}</li>
  75. </ul>
  76. <table border="1" width="100%">
  77. {# These are hard-coded right now, but should be grabbed dynamically from the registered results #}
  78. {%- for kind in ['ocp_certs', 'etcd', 'kubeconfigs', 'router', 'registry'] -%}
  79. <tr>
  80. <th colspan="7" style="text-align:center"><h2 class="cert-kind">{{ kind }}</h2></th>
  81. </tr>
  82. <tr>
  83. <th>&nbsp;</th>
  84. <th style="width:33%">Certificate Common/Alt Name(s)</th>
  85. <td>Serial</th>
  86. <th>Health</th>
  87. <th>Days Remaining</th>
  88. <th>Expiration Date</th>
  89. <th>Path</th>
  90. </tr>
  91. {# A row for each certificate examined #}
  92. {%- for v in hostvars[host].check_results.check_results[kind] -%}
  93. {# Let's add some flair and show status visually with fancy icons #}
  94. {% if v.health == 'ok' %}
  95. {% set health_icon = 'glyphicon glyphicon-ok' %}
  96. {% elif v.health == 'warning' %}
  97. {% set health_icon = 'glyphicon glyphicon-alert' %}
  98. {% else %}
  99. {% set health_icon = 'glyphicon glyphicon-remove' %}
  100. {% endif %}
  101. <tr class="{{ loop.cycle('odd', 'even') }}">
  102. <td style="text-align:center"><i class="{{ health_icon }}"></i></td>
  103. <td style="width:33%">{{ v.cert_cn }}</td>
  104. <td><code>int({{ v.serial }})/hex({{ v.serial_hex }})</code></td>
  105. <td>{{ v.health }}</td>
  106. <td>{{ v.days_remaining }}</td>
  107. <td>{{ v.expiry }}</td>
  108. <td>{{ v.path }}</td>
  109. </tr>
  110. {% endfor %}
  111. {# end row generation per cert of this type #}
  112. {% endfor %}
  113. {# end generation for each kind of cert block #}
  114. </table>
  115. <hr />
  116. {% endfor %}
  117. {# end section generation for each host #}
  118. <footer>
  119. <p>
  120. Expiration report generated by
  121. the <a href="https://github.com/openshift/openshift-ansible"
  122. target="_blank">openshift-ansible</a>
  123. <a href="https://github.com/openshift/openshift-ansible/tree/master/roles/openshift_certificate_expiry"
  124. target="_blank">certificate expiry</a> role.
  125. </p>
  126. <p>
  127. Status icons from bootstrap/glyphicon
  128. </p>
  129. </footer>
  130. </body>
  131. </html>