main.yml 1.0 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. 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 the result JSON string
  17. run_once: yes
  18. set_fact: json_result_string="{{ hostvars|oo_cert_expiry_results_to_json(play_hosts) }}"
  19. when: openshift_certificate_expiry_save_json_results|bool
  20. - name: Generate results JSON file
  21. become: no
  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