config.yml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. roles:
  19. - role: os_firewall
  20. - role: openshift_clock
  21. - role: openshift_etcd
  22. etcd_peers: "{{ groups.oo_etcd_to_config | default([], true) }}"
  23. etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}"
  24. etcd_certificates_etcd_hosts: "{{ groups.oo_etcd_to_config | default([], true) }}"
  25. - role: nickhammond.logrotate
  26. - name: etcd Install Checkpoint End
  27. hosts: all
  28. gather_facts: false
  29. tasks:
  30. - name: Set etcd install 'Complete'
  31. run_once: true
  32. set_stats:
  33. data:
  34. installer_phase_etcd:
  35. status: "Complete"
  36. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"