containerized_tasks.yml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ---
  2. - name: Verify cluster is healthy pre-upgrade
  3. command: "etcdctl --cert-file /etc/etcd/peer.crt --key-file /etc/etcd/peer.key --ca-file /etc/etcd/ca.crt -C https://{{ openshift.common.hostname }}:2379 cluster-health"
  4. - name: Get current image
  5. shell: grep 'ExecStart=' /etc/systemd/system/etcd_container.service | awk '{print $NF}'
  6. register: current_image
  7. - name: Set new_etcd_image
  8. set_fact:
  9. new_etcd_image: "{{ current_image.stdout | regex_replace('/etcd.*$','/etcd3:' ~ upgrade_version ) if upgrade_version | version_compare('3.0','>=')
  10. else current_image.stdout.split(':')[0] ~ ':' ~ 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: /etc/systemd/system/etcd_container.service
  16. regexp: "{{ current_image.stdout }}$"
  17. replace: "{{ new_etcd_image }}"
  18. - name: Restart etcd_container
  19. systemd:
  20. name: etcd_container
  21. daemon_reload: yes
  22. state: restarted
  23. ## TODO: probably should just move this into the backup playbooks, also this
  24. ## will fail on atomic host. We need to revisit how to do etcd backups there as
  25. ## the container may be newer than etcdctl on the host. Assumes etcd3 obsoletes etcd (7.3.1)
  26. - name: Upgrade etcd for etcdctl when not atomic
  27. package: name=etcd state=latest
  28. when: not openshift.common.is_atomic | bool
  29. - name: Verify cluster is healthy
  30. command: "etcdctl --cert-file /etc/etcd/peer.crt --key-file /etc/etcd/peer.key --ca-file /etc/etcd/ca.crt -C https://{{ openshift.common.hostname }}:2379 cluster-health"
  31. register: etcdctl
  32. until: etcdctl.rc == 0
  33. retries: 3
  34. delay: 10
  35. - name: Store new etcd_image
  36. openshift_facts:
  37. role: etcd
  38. local_facts:
  39. etcd_image: "{{ new_etcd_image }}"