upgrade_static.yml 1.1 KB

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