html_and_json_timestamp.yaml 659 B

12345678910111213141516
  1. ---
  2. # Generate timestamped HTML and JSON reports in /var/lib/certcheck
  3. - name: Check cert expirys
  4. hosts: nodes:masters:etcd
  5. become: yes
  6. gather_facts: no
  7. vars:
  8. openshift_certificate_expiry_generate_html_report: yes
  9. openshift_certificate_expiry_save_json_results: yes
  10. openshift_certificate_expiry_show_all: yes
  11. timestamp: "{{ lookup('pipe', 'date +%Y%m%d') }}"
  12. openshift_certificate_expiry_html_report_path: "/var/lib/certcheck/{{ timestamp }}-cert-expiry-report.html"
  13. openshift_certificate_expiry_json_results_path: "/var/lib/certcheck/{{ timestamp }}-cert-expiry-report.json"
  14. roles:
  15. - role: openshift_certificate_expiry