upgrade.yml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. - name: Record containerized etcd version
  13. command: docker exec etcd_container rpm -qa --qf '%{version}' etcd\*
  14. register: etcd_container_version
  15. failed_when: false
  16. when: openshift.common.is_containerized | bool
  17. # I really dislike this copy/pasta but I wasn't able to find a way to get it to loop
  18. # through hosts, then loop through tasks only when appropriate
  19. - name: Upgrade to 2.1
  20. hosts: etcd_hosts_to_upgrade
  21. serial: 1
  22. vars:
  23. upgrade_version: '2.1'
  24. tasks:
  25. - include: rhel_tasks.yml
  26. when: etcd_rpm_version.stdout | default('99') | version_compare('2.1','<') and ansible_distribution == 'RedHat' and not openshift.common.is_containerized | bool
  27. - name: Upgrade RPM hosts to 2.2
  28. hosts: etcd_hosts_to_upgrade
  29. serial: 1
  30. vars:
  31. upgrade_version: '2.2'
  32. tasks:
  33. - include: rhel_tasks.yml
  34. when: etcd_rpm_version.stdout | default('99') | version_compare('2.2','<') and ansible_distribution == 'RedHat' and not openshift.common.is_containerized | bool
  35. - name: Upgrade containerized hosts to 2.2.5
  36. hosts: etcd_hosts_to_upgrade
  37. serial: 1
  38. vars:
  39. upgrade_version: 2.2.5
  40. tasks:
  41. - include: containerized_tasks.yml
  42. when: etcd_container_version.stdout | default('99') | version_compare('2.2','<') and openshift.common.is_containerized | bool
  43. - name: Upgrade RPM hosts to 2.3
  44. hosts: etcd_hosts_to_upgrade
  45. serial: 1
  46. vars:
  47. upgrade_version: '2.3'
  48. tasks:
  49. - include: rhel_tasks.yml
  50. when: etcd_rpm_version.stdout | default('99') | version_compare('2.3','<') and ansible_distribution == 'RedHat' and not openshift.common.is_containerized | bool
  51. - name: Upgrade containerized hosts to 2.3.7
  52. hosts: etcd_hosts_to_upgrade
  53. serial: 1
  54. vars:
  55. upgrade_version: 2.3.7
  56. tasks:
  57. - include: containerized_tasks.yml
  58. when: etcd_container_version.stdout | default('99') | version_compare('2.3','<') and openshift.common.is_containerized | bool
  59. - name: Upgrade RPM hosts to 3.0
  60. hosts: etcd_hosts_to_upgrade
  61. serial: 1
  62. vars:
  63. upgrade_version: '3.0'
  64. tasks:
  65. - include: rhel_tasks.yml
  66. when: etcd_rpm_version.stdout | default('99') | version_compare('3.0','<') and ansible_distribution == 'RedHat' and not openshift.common.is_containerized | bool
  67. - name: Upgrade containerized hosts to etcd3 image
  68. hosts: etcd_hosts_to_upgrade
  69. serial: 1
  70. vars:
  71. upgrade_version: 3.0.14
  72. tasks:
  73. - include: containerized_tasks.yml
  74. when: etcd_container_version.stdout | default('99') | version_compare('3.0','<') and openshift.common.is_containerized | bool
  75. - name: Upgrade fedora to latest
  76. hosts: etcd_hosts_to_upgrade
  77. serial: 1
  78. tasks:
  79. - include: fedora_tasks.yml
  80. when: ansible_distribution == 'Fedora' and not openshift.common.is_containerized | bool
  81. - name: Backup etcd
  82. include: backup.yml
  83. vars:
  84. backup_tag: "post-3.0-"
  85. when: openshift_etcd_backup | default(true) | bool