config.yml 929 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. - name: Logging Install Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set Logging install 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_logging:
  11. status: "In Progress"
  12. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  13. - name: OpenShift Aggregated Logging
  14. hosts: oo_first_master
  15. roles:
  16. - openshift_logging
  17. # TODO: Remove when master config property is removed
  18. - name: Update Master configs
  19. hosts: oo_masters:!oo_first_master
  20. tasks:
  21. - block:
  22. - import_role:
  23. name: openshift_logging
  24. tasks_from: update_master_config
  25. - name: Logging Install Checkpoint End
  26. hosts: all
  27. gather_facts: false
  28. tasks:
  29. - name: Set Logging install 'Complete'
  30. run_once: true
  31. set_stats:
  32. data:
  33. installer_phase_logging:
  34. status: "Complete"
  35. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"