config.yml 1020 B

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