migrate.yml 5.1 KB

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