main.yml 841 B

12345678910111213141516171819202122232425
  1. ---
  2. - name: Check cert expirys on host
  3. openshift_cert_expiry:
  4. warning_days: "{{ openshift_certificate_expiry_warning_days|int }}"
  5. config_base: "{{ openshift_certificate_expiry_config_base }}"
  6. show_all: "{{ openshift_certificate_expiry_show_all|bool }}"
  7. register: check_results
  8. - name: Generate expiration report HTML
  9. become: no
  10. run_once: yes
  11. template:
  12. src: cert-expiry-table.html.j2
  13. dest: "{{ openshift_certificate_expiry_html_report_path }}"
  14. delegate_to: localhost
  15. when: "{{ openshift_certificate_expiry_generate_html_report|bool }}"
  16. - name: Generate expiration results JSON
  17. become: no
  18. run_once: yes
  19. template:
  20. src: save_json_results.j2
  21. dest: "{{ openshift_certificate_expiry_json_results_path }}"
  22. delegate_to: localhost
  23. when: "{{ openshift_certificate_expiry_save_json_results|bool }}"