upgrade_static.yml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ---
  2. # PREREQ Node service is ready to run static pods
  3. # INPUT r_etcd_upgrade_version
  4. - name: Verify cluster is healthy pre-upgrade
  5. command: "{{ etcdctlv2 }} cluster-health"
  6. - name: Check for old etcd service files
  7. stat:
  8. path: "{{ item }}"
  9. get_checksum: false
  10. get_attributes: false
  11. get_mime: false
  12. with_items:
  13. - "/etc/systemd/system/etcd.service"
  14. - "/etc/systemd/system/etcd_container.service"
  15. register: old_svc_files
  16. - name: Remove old etcd service files
  17. file:
  18. path: "{{ item.stat.path }}"
  19. state: absent
  20. with_items:
  21. - "{{ old_svc_files.results }}"
  22. when:
  23. - item.stat.exists
  24. - item.stat.isreg
  25. # We removed the ability to detect what was previously 'containerized'
  26. # Need to stop and disable this service, but might not be present.
  27. - name: Stop, disable and mask old etcd service
  28. systemd:
  29. name: "{{ item }}"
  30. state: stopped
  31. enabled: no
  32. masked: yes
  33. daemon_reload: yes
  34. with_items:
  35. - etcd
  36. - etcd_container
  37. failed_when: False
  38. - name: Remove nonexistent services
  39. command: "systemctl reset-failed"
  40. - name: Configure static definition
  41. import_tasks: static.yml
  42. - set_fact:
  43. r_etcd_common_etcd_runtime: static_pod
  44. - name: Verify cluster is healthy
  45. command: "{{ etcdctlv2 }} cluster-health"
  46. register: etcdctl
  47. until: etcdctl.rc == 0 and 'stopped' not in etcdctl.stderr
  48. retries: 30
  49. delay: 10