migrate.yml 4.8 KB

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