upgrade.yml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. ---
  2. - name: Determine etcd version
  3. hosts: etcd_hosts_to_upgrade
  4. tasks:
  5. - name: Record RPM based etcd version
  6. command: rpm -qa --qf '%{version}' etcd\*
  7. args:
  8. warn: no
  9. register: etcd_rpm_version
  10. failed_when: false
  11. when: not openshift.common.is_containerized | bool
  12. # AUDIT:changed_when: `false` because we are only inspecting
  13. # state, not manipulating anything
  14. changed_when: false
  15. - name: Record containerized etcd version
  16. command: docker exec etcd_container rpm -qa --qf '%{version}' etcd\*
  17. register: etcd_container_version
  18. failed_when: false
  19. when: openshift.common.is_containerized | bool
  20. # AUDIT:changed_when: `false` because we are only inspecting
  21. # state, not manipulating anything
  22. changed_when: false
  23. - name: Record containerized etcd version
  24. command: docker exec etcd_container rpm -qa --qf '%{version}' etcd\*
  25. register: etcd_container_version
  26. failed_when: false
  27. when: openshift.common.is_containerized | bool and not openshift.common.is_etcd_system_container | bool
  28. # AUDIT:changed_when: `false` because we are only inspecting
  29. # state, not manipulating anything
  30. changed_when: false
  31. - name: Record containerized etcd version
  32. command: runc exec etcd_container rpm -qa --qf '%{version}' etcd\*
  33. register: etcd_container_version
  34. failed_when: false
  35. when: openshift.common.is_containerized | bool and openshift.common.is_etcd_system_container | bool
  36. # AUDIT:changed_when: `false` because we are only inspecting
  37. # state, not manipulating anything
  38. changed_when: false
  39. # I really dislike this copy/pasta but I wasn't able to find a way to get it to loop
  40. # through hosts, then loop through tasks only when appropriate
  41. - name: Upgrade to 2.1
  42. hosts: etcd_hosts_to_upgrade
  43. serial: 1
  44. vars:
  45. upgrade_version: '2.1'
  46. tasks:
  47. - include: rhel_tasks.yml
  48. when: etcd_rpm_version.stdout | default('99') | version_compare('2.1','<') and ansible_distribution == 'RedHat' and not openshift.common.is_containerized | bool
  49. - name: Upgrade RPM hosts to 2.2
  50. hosts: etcd_hosts_to_upgrade
  51. serial: 1
  52. vars:
  53. upgrade_version: '2.2'
  54. tasks:
  55. - include: rhel_tasks.yml
  56. when: etcd_rpm_version.stdout | default('99') | version_compare('2.2','<') and ansible_distribution == 'RedHat' and not openshift.common.is_containerized | bool
  57. - name: Upgrade containerized hosts to 2.2.5
  58. hosts: etcd_hosts_to_upgrade
  59. serial: 1
  60. vars:
  61. upgrade_version: 2.2.5
  62. tasks:
  63. - include: containerized_tasks.yml
  64. when: etcd_container_version.stdout | default('99') | version_compare('2.2','<') and openshift.common.is_containerized | bool
  65. - name: Upgrade RPM hosts to 2.3
  66. hosts: etcd_hosts_to_upgrade
  67. serial: 1
  68. vars:
  69. upgrade_version: '2.3'
  70. tasks:
  71. - include: rhel_tasks.yml
  72. when: etcd_rpm_version.stdout | default('99') | version_compare('2.3','<') and ansible_distribution == 'RedHat' and not openshift.common.is_containerized | bool
  73. - name: Upgrade containerized hosts to 2.3.7
  74. hosts: etcd_hosts_to_upgrade
  75. serial: 1
  76. vars:
  77. upgrade_version: 2.3.7
  78. tasks:
  79. - include: containerized_tasks.yml
  80. when: etcd_container_version.stdout | default('99') | version_compare('2.3','<') and openshift.common.is_containerized | bool
  81. - name: Upgrade RPM hosts to 3.0
  82. hosts: etcd_hosts_to_upgrade
  83. serial: 1
  84. vars:
  85. upgrade_version: '3.0'
  86. tasks:
  87. - include: rhel_tasks.yml
  88. when: etcd_rpm_version.stdout | default('99') | version_compare('3.0','<') and ansible_distribution == 'RedHat' and not openshift.common.is_containerized | bool
  89. - name: Upgrade containerized hosts to etcd3 image
  90. hosts: etcd_hosts_to_upgrade
  91. serial: 1
  92. vars:
  93. upgrade_version: 3.0.15
  94. tasks:
  95. - include: containerized_tasks.yml
  96. when: etcd_container_version.stdout | default('99') | version_compare('3.0','<') and openshift.common.is_containerized | bool
  97. - name: Upgrade fedora to latest
  98. hosts: etcd_hosts_to_upgrade
  99. serial: 1
  100. tasks:
  101. - include: fedora_tasks.yml
  102. when: ansible_distribution == 'Fedora' and not openshift.common.is_containerized | bool
  103. - name: Backup etcd
  104. include: backup.yml
  105. vars:
  106. backup_tag: "post-3.0-"
  107. when: openshift_etcd_backup | default(true) | bool