main.yml 1.1 KB

123456789101112131415161718192021222324252627282930
  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. run_once: yes
  10. template:
  11. src: cert-expiry-table.html.j2
  12. dest: "{{ openshift_certificate_expiry_html_report_path }}"
  13. delegate_to: localhost
  14. when: openshift_certificate_expiry_generate_html_report|bool
  15. - name: Generate the result JSON string
  16. run_once: yes
  17. set_fact:
  18. # oo_cert_expiry_results_to_json is a custom filter in role lib_utils
  19. json_result_string: "{{ hostvars|oo_cert_expiry_results_to_json(play_hosts) }}"
  20. when: openshift_certificate_expiry_save_json_results|bool
  21. - name: Generate results JSON file
  22. run_once: yes
  23. template:
  24. src: save_json_results.j2
  25. dest: "{{ openshift_certificate_expiry_json_results_path }}"
  26. delegate_to: localhost
  27. when: openshift_certificate_expiry_save_json_results|bool