main.yml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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: >
  15. openshift_certificate_expiry_generate_html_report | bool
  16. or (openshift_certificate_expiry_fail_on_warn | bool and
  17. check_results.warn_certs | bool)
  18. - name: Generate results JSON file
  19. run_once: yes
  20. template:
  21. src: save_json_results.j2
  22. dest: "{{ openshift_certificate_expiry_json_results_path }}"
  23. delegate_to: localhost
  24. when: >
  25. openshift_certificate_expiry_save_json_results | bool
  26. or (openshift_certificate_expiry_fail_on_warn | bool and
  27. check_results.warn_certs | bool)
  28. vars:
  29. json_result_string: "{{ hostvars|oo_cert_expiry_results_to_json(play_hosts) }}"
  30. - name: Fail when certs are near or already expired
  31. fail:
  32. msg: >
  33. Cluster certificates found to be expired or within
  34. {{ openshift_certificate_expiry_warning_days|int }} days of expiring.
  35. You may view the report at {{ openshift_certificate_expiry_html_report_path }}
  36. or {{ openshift_certificate_expiry_json_results_path }}.
  37. when:
  38. - openshift_certificate_expiry_fail_on_warn | bool
  39. - check_results.warn_certs | bool