migrate.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ---
  2. # Should this be run in a serial manner?
  3. - set_fact:
  4. l_etcd_service: "{{ 'etcd_container' if openshift_is_containerized else 'etcd' }}"
  5. - name: Migrate etcd data
  6. command: >
  7. etcdctl migrate --data-dir={{ etcd_data_dir }}
  8. environment:
  9. ETCDCTL_API: 3
  10. register: l_etcdctl_migrate
  11. # TODO(jchaloup): If any of the members fails, we need to restore all members to v2 from the pre-migrate backup
  12. - name: Check the etcd v2 data are correctly migrated
  13. fail:
  14. msg: "Failed to migrate a member"
  15. when: "'finished transforming keys' not in l_etcdctl_migrate.stdout and 'no v2 keys to migrate' not in l_etcdctl_migrate.stdout"
  16. - name: Migration message
  17. debug:
  18. msg: "Etcd migration finished with: {{ l_etcdctl_migrate.stdout }}"
  19. - name: Set ETCD_FORCE_NEW_CLUSTER=true on first etcd host
  20. lineinfile:
  21. line: "ETCD_FORCE_NEW_CLUSTER=true"
  22. dest: /etc/etcd/etcd.conf
  23. backup: true
  24. - name: Start etcd
  25. systemd:
  26. name: "{{ l_etcd_service }}"
  27. state: started
  28. - name: Wait for cluster to become healthy after bringing up first member
  29. command: >
  30. 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
  31. register: l_etcd_migrate_health
  32. until: l_etcd_migrate_health.rc == 0
  33. retries: 3
  34. delay: 30
  35. - name: Unset ETCD_FORCE_NEW_CLUSTER=true on first etcd host
  36. lineinfile:
  37. line: "ETCD_FORCE_NEW_CLUSTER=true"
  38. dest: /etc/etcd/etcd.conf
  39. state: absent
  40. backup: true
  41. - name: Restart first etcd host
  42. systemd:
  43. name: "{{ l_etcd_service }}"
  44. state: restarted
  45. - name: Wait for cluster to become healthy after bringing up first member
  46. command: >
  47. 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
  48. register: l_etcd_migrate_health
  49. until: l_etcd_migrate_health.rc == 0
  50. retries: 3
  51. delay: 30
  52. - set_fact:
  53. r_etcd_migrate_success: true