upgrade_image.yml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ---
  2. # INPUT r_etcd_upgrade_version
  3. - name: Verify cluster is healthy pre-upgrade
  4. command: "{{ etcdctlv2 }} cluster-health"
  5. - name: Get current image
  6. shell: "grep 'ExecStart=' {{ etcd_service_file }} | awk '{print $NF}'"
  7. register: current_image
  8. - name: Set new_etcd_image
  9. set_fact:
  10. new_etcd_image: "{{ current_image.stdout | regex_replace('/etcd.*$','/etcd:' ~ r_etcd_upgrade_version ) }}"
  11. - name: Pull new etcd image
  12. command: "docker pull {{ new_etcd_image }}"
  13. - name: Update to latest etcd image
  14. replace:
  15. dest: "{{ etcd_service_file }}"
  16. regexp: "{{ current_image.stdout }}$"
  17. replace: "{{ new_etcd_image }}"
  18. - lineinfile:
  19. destfile: "{{ etcd_conf_file }}"
  20. regexp: '^ETCD_QUOTA_BACKEND_BYTES='
  21. line: "ETCD_QUOTA_BACKEND_BYTES={{ etcd_quota_backend_bytes }}"
  22. - name: Restart etcd_container
  23. systemd:
  24. name: "{{ etcd_service }}"
  25. daemon_reload: yes
  26. state: restarted
  27. ## TODO: probably should just move this into the backup playbooks, also this
  28. ## will fail on atomic host. We need to revisit how to do etcd backups there as
  29. ## the container may be newer than etcdctl on the host. Assumes etcd3 obsoletes etcd (7.3.1)
  30. - name: Detecting Atomic Host Operating System
  31. stat:
  32. path: /run/ostree-booted
  33. register: l_ostree_booted
  34. - name: Upgrade etcd for etcdctl when not atomic
  35. package:
  36. name: etcd
  37. state: latest
  38. when: not l_ostree_booted.stat.exists | bool
  39. register: result
  40. until: result | success
  41. - name: Verify cluster is healthy
  42. command: "{{ etcdctlv2 }} cluster-health"
  43. register: etcdctl
  44. until: etcdctl.rc == 0
  45. retries: 3
  46. delay: 10
  47. - name: Store new etcd_image
  48. # DEPENDENCY openshift_facts
  49. openshift_facts:
  50. role: etcd
  51. local_facts:
  52. etcd_image: "{{ new_etcd_image }}"