upgrade_static.yml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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: Remove old etcd service files
  7. file:
  8. path: "{{ item }}"
  9. state: absent
  10. with_items:
  11. - "/etc/systemd/system/etcd.service"
  12. - "/etc/systemd/system/etcd_container.service"
  13. # We removed the ability to detect what was previously 'containerized'
  14. # Need to stop and disable this service, but might not be present.
  15. - name: Stop, disable old etcd services
  16. systemd:
  17. name: "{{ item }}"
  18. state: stopped
  19. enabled: no
  20. failed_when: False
  21. with_items:
  22. - etcd
  23. - etcd_container
  24. - name: Mask old etcd services
  25. command: "systemctl mask {{ etcd_service }}"
  26. with_items:
  27. - etcd
  28. - etcd_container
  29. - name: Reload systemd daemon
  30. command: "systemctl daemon-reload"
  31. - name: Configure static definition
  32. import_tasks: static.yml
  33. - name: Verify cluster is healthy
  34. command: "{{ etcdctlv2 }} cluster-health"
  35. register: etcdctl
  36. until: etcdctl.rc == 0
  37. retries: 30
  38. delay: 10