config.yml 1.7 KB

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