config.yml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. ---
  2. - name: etcd Install Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set etcd install 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_etcd:
  11. status: "In Progress"
  12. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  13. - import_playbook: ca.yml
  14. - import_playbook: certificates.yml
  15. - name: Configure etcd
  16. hosts: oo_etcd_to_config
  17. any_errors_fatal: true
  18. tasks:
  19. - fail:
  20. msg: >
  21. etcd stand-alone hosts on atomic is no longer supported. Please
  22. co-locate your etcd hosts with masters.
  23. when:
  24. - openshift_is_atomic | bool
  25. - not inventory_hostname in groups['oo_masters']
  26. # Setup etcd as a static pod if collocated with a master
  27. - import_role:
  28. name: etcd
  29. tasks_from: static.yml
  30. vars:
  31. etcd_peers: "{{ groups.oo_etcd_to_config | default([], true) }}"
  32. etcd_certificates_etcd_hosts: "{{ groups.oo_etcd_to_config | default([], true) }}"
  33. when: inventory_hostname in groups['oo_masters']
  34. - import_role:
  35. name: etcd
  36. tasks_from: rpm.yml
  37. when: not inventory_hostname in groups['oo_masters']
  38. vars:
  39. etcd_peers: "{{ groups.oo_etcd_to_config | default([], true) }}"
  40. etcd_certificates_etcd_hosts: "{{ groups.oo_etcd_to_config | default([], true) }}"
  41. - import_role:
  42. name: nickhammond.logrotate
  43. - name: etcd Install Checkpoint End
  44. hosts: all
  45. gather_facts: false
  46. tasks:
  47. - name: Set etcd install 'Complete'
  48. run_once: true
  49. set_stats:
  50. data:
  51. installer_phase_etcd:
  52. status: "Complete"
  53. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"