easy-mode-upload.yaml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # This example generates HTML and JSON reports and
  2. #
  3. # Copies of the generated HTML and JSON reports are uploaded to the masters,
  4. # which is particularly useful when this playbook is run from a container.
  5. #
  6. # All certificates (healthy or not) are included in the results
  7. #
  8. # Optional environment variables to alter the behaviour of the playbook:
  9. # CERT_EXPIRY_WARN_DAYS: Length of the warning window in days (45)
  10. # COPY_TO_PATH: path to copy reports to in the masters (/etc/origin/certificate_expiration_report)
  11. ---
  12. - name: Generate certificate expiration reports
  13. hosts: nodes:masters:etcd
  14. gather_facts: no
  15. vars:
  16. openshift_certificate_expiry_save_json_results: yes
  17. openshift_certificate_expiry_generate_html_report: yes
  18. openshift_certificate_expiry_show_all: yes
  19. openshift_certificate_expiry_warning_days: "{{ lookup('env', 'CERT_EXPIRY_WARN_DAYS') | default('45', true) }}"
  20. roles:
  21. - role: openshift_certificate_expiry
  22. - name: Upload reports to master
  23. hosts: masters
  24. gather_facts: no
  25. vars:
  26. destination_path: "{{ lookup('env', 'COPY_TO_PATH') | default('/etc/origin/certificate_expiration_report', true) }}"
  27. timestamp: "{{ lookup('pipe', 'date +%Y%m%d') }}"
  28. tasks:
  29. - name: Ensure that the target directory exists
  30. file:
  31. path: "{{ destination_path }}"
  32. state: directory
  33. - name: Copy the reports
  34. copy:
  35. dest: "{{ destination_path }}/{{ timestamp }}-{{ item }}"
  36. src: "/tmp/{{ item }}"
  37. with_items:
  38. - "cert-expiry-report.html"
  39. - "cert-expiry-report.json"