migrate.yml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. ---
  2. - name: Check if the master has embedded etcd
  3. hosts: localhost
  4. connection: local
  5. become: no
  6. gather_facts: no
  7. tags:
  8. - always
  9. tasks:
  10. - fail:
  11. msg: "Migration of an embedded etcd is not supported. Please, migrate the embedded etcd into an external etcd first."
  12. when:
  13. - groups.oo_etcd_to_config | default([]) | length == 0
  14. - name: Run pre-checks
  15. hosts: oo_etcd_to_migrate
  16. tasks:
  17. - import_role:
  18. name: etcd
  19. tasks_from: migrate.pre_check.yml
  20. vars:
  21. etcd_peer: "{{ ansible_default_ipv4.address }}"
  22. # TODO: This will be different for release-3.6 branch
  23. - name: Prepare masters for etcd data migration
  24. hosts: oo_masters_to_config
  25. tasks:
  26. - set_fact:
  27. master_services:
  28. - "{{ openshift_service_type + '-master-controllers' }}"
  29. - "{{ openshift_service_type + '-master-api' }}"
  30. - debug:
  31. msg: "master service name: {{ master_services }}"
  32. - name: Stop masters
  33. service:
  34. name: "{{ item }}"
  35. state: stopped
  36. with_items: "{{ master_services }}"
  37. - name: Backup v2 data
  38. hosts: oo_etcd_to_migrate
  39. gather_facts: no
  40. roles:
  41. - role: openshift_facts
  42. post_tasks:
  43. - import_role:
  44. name: etcd
  45. tasks_from: backup.yml
  46. vars:
  47. r_etcd_common_backup_tag: pre-migration
  48. r_etcd_common_backup_sufix_name: "{{ lookup('pipe', 'date +%Y%m%d%H%M%S') }}"
  49. - name: Gate on etcd backup
  50. hosts: localhost
  51. connection: local
  52. become: no
  53. tasks:
  54. - set_fact:
  55. etcd_backup_completed: "{{ hostvars
  56. | lib_utils_oo_select_keys(groups.oo_etcd_to_migrate)
  57. | lib_utils_oo_collect('inventory_hostname', {'r_etcd_common_backup_complete': true}) }}"
  58. - set_fact:
  59. etcd_backup_failed: "{{ groups.oo_etcd_to_migrate | difference(etcd_backup_completed) | list }}"
  60. - fail:
  61. msg: "Migration cannot continue. The following hosts did not complete etcd backup: {{ etcd_backup_failed | join(',') }}"
  62. when:
  63. - etcd_backup_failed | length > 0
  64. - name: Stop etcd
  65. hosts: oo_etcd_to_migrate
  66. gather_facts: no
  67. pre_tasks:
  68. - import_role:
  69. name: etcd
  70. tasks_from: disable_etcd.yml
  71. - name: Migrate data on first etcd
  72. hosts: oo_etcd_to_migrate[0]
  73. gather_facts: no
  74. tasks:
  75. - import_role:
  76. name: etcd
  77. tasks_from: migrate.yml
  78. vars:
  79. etcd_peer: "{{ openshift.common.ip }}"
  80. etcd_url_scheme: "https"
  81. etcd_peer_url_scheme: "https"
  82. - name: Clean data stores on remaining etcd hosts
  83. hosts: oo_etcd_to_migrate[1:]
  84. gather_facts: no
  85. tasks:
  86. - import_role:
  87. name: etcd
  88. tasks_from: clean_data.yml
  89. vars:
  90. etcd_peer: "{{ openshift.common.ip }}"
  91. etcd_url_scheme: "https"
  92. etcd_peer_url_scheme: "https"
  93. - name: Add etcd hosts
  94. delegate_to: localhost
  95. add_host:
  96. name: "{{ item }}"
  97. groups: oo_new_etcd_to_config
  98. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  99. ansible_become: "{{ g_sudo | default(omit) }}"
  100. with_items: "{{ groups.oo_etcd_to_migrate[1:] | default([]) }}"
  101. changed_when: no
  102. - name: Set success
  103. set_fact:
  104. r_etcd_migrate_success: true
  105. - import_playbook: scaleup.yml
  106. - name: Gate on etcd migration
  107. hosts: oo_masters_to_config
  108. gather_facts: no
  109. tasks:
  110. - set_fact:
  111. etcd_migration_completed: "{{ hostvars
  112. | lib_utils_oo_select_keys(groups.oo_etcd_to_migrate)
  113. | lib_utils_oo_collect('inventory_hostname', {'r_etcd_migrate_success': true}) }}"
  114. - set_fact:
  115. etcd_migration_failed: "{{ groups.oo_etcd_to_migrate | difference(etcd_migration_completed) | list }}"
  116. - name: Add TTLs on the first master
  117. hosts: oo_first_master[0]
  118. tasks:
  119. - import_role:
  120. name: etcd
  121. tasks_from: migrate.add_ttls.yml
  122. vars:
  123. etcd_peer: "{{ hostvars[groups.oo_etcd_to_migrate.0].openshift.common.ip }}"
  124. etcd_url_scheme: "https"
  125. etcd_peer_url_scheme: "https"
  126. when: etcd_migration_failed | length == 0
  127. - name: Configure masters if etcd data migration is succesfull
  128. hosts: oo_masters_to_config
  129. tasks:
  130. - import_role:
  131. name: etcd
  132. tasks_from: migrate.configure_master.yml
  133. when: etcd_migration_failed | length == 0
  134. - debug:
  135. msg: "Skipping master re-configuration since migration failed."
  136. when:
  137. - etcd_migration_failed | length > 0
  138. - name: Start master services
  139. service:
  140. name: "{{ item }}"
  141. state: started
  142. register: service_status
  143. # Sometimes the master-api, resp. master-controllers fails to start for the first time
  144. until: service_status.state is defined and service_status.state == "started"
  145. retries: 5
  146. delay: 10
  147. with_items: "{{ master_services[::-1] }}"
  148. - fail:
  149. msg: "Migration failed. The following hosts were not properly migrated: {{ etcd_migration_failed | join(',') }}"
  150. when:
  151. - etcd_migration_failed | length > 0