|
@@ -12,14 +12,10 @@
|
|
|
src: cert-expiry-table.html.j2
|
|
|
dest: "{{ openshift_certificate_expiry_html_report_path }}"
|
|
|
delegate_to: localhost
|
|
|
- when: openshift_certificate_expiry_generate_html_report|bool
|
|
|
-
|
|
|
-- name: Generate the result JSON string
|
|
|
- run_once: yes
|
|
|
- set_fact:
|
|
|
- # oo_cert_expiry_results_to_json is a custom filter in role lib_utils
|
|
|
- json_result_string: "{{ hostvars|oo_cert_expiry_results_to_json(play_hosts) }}"
|
|
|
- when: openshift_certificate_expiry_save_json_results|bool
|
|
|
+ when: >
|
|
|
+ openshift_certificate_expiry_generate_html_report | bool
|
|
|
+ or (openshift_certificate_expiry_fail_on_warn | bool and
|
|
|
+ check_results.warn_certs | bool)
|
|
|
|
|
|
- name: Generate results JSON file
|
|
|
run_once: yes
|
|
@@ -27,4 +23,20 @@
|
|
|
src: save_json_results.j2
|
|
|
dest: "{{ openshift_certificate_expiry_json_results_path }}"
|
|
|
delegate_to: localhost
|
|
|
- when: openshift_certificate_expiry_save_json_results|bool
|
|
|
+ when: >
|
|
|
+ openshift_certificate_expiry_save_json_results | bool
|
|
|
+ or (openshift_certificate_expiry_fail_on_warn | bool and
|
|
|
+ check_results.warn_certs | bool)
|
|
|
+ vars:
|
|
|
+ json_result_string: "{{ hostvars|oo_cert_expiry_results_to_json(play_hosts) }}"
|
|
|
+
|
|
|
+- name: Fail when certs are near or already expired
|
|
|
+ fail:
|
|
|
+ msg: >
|
|
|
+ Cluster certificates found to be expired or within
|
|
|
+ {{ openshift_certificate_expiry_warning_days|int }} days of expiring.
|
|
|
+ You may view the report at {{ openshift_certificate_expiry_html_report_path }}
|
|
|
+ or {{ openshift_certificate_expiry_json_results_path }}.
|
|
|
+ when:
|
|
|
+ - openshift_certificate_expiry_fail_on_warn | bool
|
|
|
+ - check_results.warn_certs | bool
|