main.yml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. ---
  2. # For 1.4/3.4 we want to upgrade everyone to etcd-3.0. etcd docs say to
  3. # upgrade from 2.0.x to 2.1.x to 2.2.x to 2.3.x to 3.0.x. While this is a tedius
  4. # task for RHEL and CENTOS it's simply not possible in Fedora unless you've
  5. # mirrored packages on your own because only the GA and latest versions are
  6. # available in the repos. So for Fedora we'll simply skip this, sorry.
  7. - include: ../../evaluate_groups.yml
  8. tags:
  9. - always
  10. - name: Evaluate additional groups for upgrade
  11. hosts: localhost
  12. connection: local
  13. become: no
  14. tasks:
  15. - name: Evaluate etcd_hosts_to_upgrade
  16. add_host:
  17. name: "{{ item }}"
  18. groups: etcd_hosts_to_upgrade, etcd_hosts_to_backup
  19. with_items: "{{ groups.oo_etcd_to_config if groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config | length > 0 else groups.oo_first_master }}"
  20. - name: Backup etcd before upgrading anything
  21. include: backup.yml
  22. vars:
  23. backup_tag: "pre-upgrade-"
  24. - name: Drop etcdctl profiles
  25. hosts: etcd_hosts_to_upgrade
  26. tasks:
  27. - include: roles/etcd/tasks/etcdctl.yml
  28. - name: Determine etcd version
  29. hosts: etcd_hosts_to_upgrade
  30. tasks:
  31. - name: Record etcd version
  32. command: rpm -qa --qf '%{version}' etcd\*
  33. register: etcd_installed_version
  34. failed_when: false
  35. when: not openshift.common.is_containerized | bool
  36. # I really dislike this copy/pasta but I wasn't able to find a way to get it to loop
  37. # through hosts, then loop through tasks only when appropriate
  38. - name: Upgrade to 2.1
  39. hosts: etcd_hosts_to_upgrade
  40. serial: 1
  41. vars:
  42. upgrade_version: '2.1'
  43. tasks:
  44. - include: rhel_tasks.yml
  45. when: etcd_installed_version.stdout | default('99') | version_compare('2.1','<') and ansible_distribution == 'RedHat' and not openshift.common.is_containerized | bool
  46. - name: Upgrade to 2.2
  47. hosts: etcd_hosts_to_upgrade
  48. serial: 1
  49. vars:
  50. upgrade_version: '2.2'
  51. tasks:
  52. - include: rhel_tasks.yml
  53. when: etcd_installed_version.stdout | default('99') | version_compare('2.2','<') and ansible_distribution == 'RedHat' and not openshift.common.is_containerized | bool
  54. - name: Upgrade to 2.3
  55. hosts: etcd_hosts_to_upgrade
  56. serial: 1
  57. vars:
  58. upgrade_version: '2.3'
  59. tasks:
  60. - include: rhel_tasks.yml
  61. when: etcd_installed_version.stdout | default('99') | version_compare('2.3','<') and ansible_distribution == 'RedHat' and not openshift.common.is_containerized | bool
  62. - name: Upgrade to 3.0
  63. hosts: etcd_hosts_to_upgrade
  64. serial: 1
  65. vars:
  66. upgrade_version: '3.0'
  67. tasks:
  68. - include: rhel_tasks.yml
  69. when: etcd_installed_version.stdout | default('99') | version_compare('3.0','<') and ansible_distribution == 'RedHat' and not openshift.common.is_containerized | bool
  70. - name: Upgrade fedora to latest
  71. hosts: etcd_hosts_to_upgrade
  72. serial: 1
  73. tasks:
  74. - include: fedora_tasks.yml
  75. when: ansible_distribution == 'Fedora' and not openshift.common.is_containerized | bool
  76. - name: Upgrade containerized hosts to etcd3 image
  77. hosts: etcd_hosts_to_upgrade
  78. serial: 1
  79. tasks:
  80. - include: containerized_tasks.yml
  81. when: openshift.common.is_containerized | bool
  82. - name: Backup etcd
  83. include: backup.yml
  84. vars:
  85. backup_tag: "post-3.0-"