easy-mode.yaml 641 B

123456789101112131415161718192021
  1. ---
  2. # This example playbook is great if you're just wanting to try the
  3. # role out.
  4. #
  5. # This example enables HTML and JSON reports
  6. #
  7. # The warning window is set very large so you will almost always get results back
  8. #
  9. # All certificates (healthy or not) are included in the results
  10. - name: Check cert expirys
  11. hosts: nodes:masters:etcd
  12. become: yes
  13. gather_facts: no
  14. vars:
  15. openshift_certificate_expiry_warning_days: 1500
  16. openshift_certificate_expiry_save_json_results: yes
  17. openshift_certificate_expiry_generate_html_report: yes
  18. openshift_certificate_expiry_show_all: yes
  19. roles:
  20. - role: openshift_certificate_expiry