force_new_cluster.yml 901 B

12345678910111213141516171819202122232425262728293031
  1. ---
  2. - name: Set ETCD_FORCE_NEW_CLUSTER=true on first etcd host
  3. lineinfile:
  4. line: "ETCD_FORCE_NEW_CLUSTER=true"
  5. dest: /etc/etcd/etcd.conf
  6. backup: true
  7. - name: Start etcd
  8. systemd:
  9. name: "{{ etcd_service }}"
  10. state: started
  11. - name: Wait for cluster to become healthy after bringing up first member
  12. command: >
  13. etcdctl --cert-file {{ etcd_peer_cert_file }} --key-file {{ etcd_peer_key_file }} --ca-file {{ etcd_peer_ca_file }} --endpoint https://{{ etcd_peer }}:{{ etcd_client_port }} cluster-health
  14. register: l_etcd_migrate_health
  15. until: l_etcd_migrate_health.rc == 0
  16. retries: 3
  17. delay: 30
  18. - name: Unset ETCD_FORCE_NEW_CLUSTER=true on first etcd host
  19. lineinfile:
  20. line: "ETCD_FORCE_NEW_CLUSTER=true"
  21. dest: /etc/etcd/etcd.conf
  22. state: absent
  23. backup: true
  24. - name: Restart first etcd host
  25. systemd:
  26. name: "{{ etcd_service }}"
  27. state: restarted