html_and_json_timestamp.yaml 645 B

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