cert-expiry-table.html.j2 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. <a href="https://docs.openshift.com/container-platform/latest/install_config/redeploying_certificates.html"
  49. target="_blank"
  50. class="navbar-link">
  51. <i class="glyphicon glyphicon-book"></i> Redeploying Certificates
  52. </a>
  53. </p>
  54. </div>
  55. </div>
  56. </nav>
  57. {# Each host has a header and table to itself #}
  58. {% for host in play_hosts %}
  59. <h1>{{ host }}</h1>
  60. <p>
  61. {{ hostvars[host].check_results.msg }}
  62. </p>
  63. <ul>
  64. <li><b>Expirations checked at:</b> {{ hostvars[host].check_results.check_results.meta.checked_at_time }}</li>
  65. <li><b>Warn after date:</b> {{ hostvars[host].check_results.check_results.meta.warn_before_date }}</li>
  66. </ul>
  67. <table border="1" width="100%">
  68. {# These are hard-coded right now, but should be grabbed dynamically from the registered results #}
  69. {%- for kind in ['ocp_certs', 'etcd', 'kubeconfigs', 'router', 'registry'] -%}
  70. <tr>
  71. <th colspan="6" style="text-align:center"><h2 class="cert-kind">{{ kind }}</h2></th>
  72. </tr>
  73. <tr>
  74. <th>&nbsp;</th>
  75. <th style="width:33%">Certificate Common/Alt Name(s)</th>
  76. <th>Health</th>
  77. <th>Days Remaining</th>
  78. <th>Expiration Date</th>
  79. <th>Path</th>
  80. </tr>
  81. {# A row for each certificate examined #}
  82. {%- for v in hostvars[host].check_results.check_results[kind] -%}
  83. {# Let's add some flair and show status visually with fancy icons #}
  84. {% if v.health == 'ok' %}
  85. {% set health_icon = 'glyphicon glyphicon-ok' %}
  86. {% elif v.health == 'warning' %}
  87. {% set health_icon = 'glyphicon glyphicon-alert' %}
  88. {% else %}
  89. {% set health_icon = 'glyphicon glyphicon-remove' %}
  90. {% endif %}
  91. <tr class="{{ loop.cycle('odd', 'even') }}">
  92. <td style="text-align:center"><i class="{{ health_icon }}"></i></td>
  93. <td style="width:33%">{{ v.cert_cn }}</td>
  94. <td>{{ v.health }}</td>
  95. <td>{{ v.days_remaining }}</td>
  96. <td>{{ v.expiry }}</td>
  97. <td>{{ v.path }}</td>
  98. </tr>
  99. {% endfor %}
  100. {# end row generation per cert of this type #}
  101. {% endfor %}
  102. {# end generation for each kind of cert block #}
  103. </table>
  104. <hr />
  105. {% endfor %}
  106. {# end section generation for each host #}
  107. <footer>
  108. <p>
  109. Expiration report generated by <a href="https://github.com/openshift/openshift-ansible" target="_blank">openshift-ansible</a>
  110. </p>
  111. <p>
  112. Status icons from bootstrap/glyphicon
  113. </p>
  114. </footer>
  115. </body>
  116. </html>