config.yml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. # Setup etcd as a static pod if collocated with a master
  29. - import_role:
  30. name: etcd
  31. tasks_from: static.yml
  32. vars:
  33. etcd_peers: "{{ groups.oo_etcd_to_config | default([], true) }}"
  34. etcd_certificates_etcd_hosts: "{{ groups.oo_etcd_to_config | default([], true) }}"
  35. when: inventory_hostname in groups['oo_masters']
  36. - import_role:
  37. name: etcd
  38. tasks_from: rpm.yml
  39. when: not inventory_hostname in groups['oo_masters']
  40. vars:
  41. etcd_peers: "{{ groups.oo_etcd_to_config | default([], true) }}"
  42. etcd_certificates_etcd_hosts: "{{ groups.oo_etcd_to_config | default([], true) }}"
  43. - import_role:
  44. name: nickhammond.logrotate
  45. - name: etcd Install Checkpoint End
  46. hosts: all
  47. gather_facts: false
  48. tasks:
  49. - name: Set etcd install 'Complete'
  50. run_once: true
  51. set_stats:
  52. data:
  53. installer_phase_etcd:
  54. status: "Complete"
  55. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"