check.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. ---
  2. # Check the cluster is healthy
  3. - include_tasks: check_cluster_health.yml
  4. # Check if there is at least one v2 snapshot
  5. - name: Check if there is at least one v2 snapshot
  6. find:
  7. paths: "{{ etcd_data_dir }}/member/snap"
  8. patterns: '*.snap'
  9. register: snapshots_result
  10. - fail:
  11. msg: "Before the migration can proceed the etcd member must write down at least one snapshot under {{ etcd_data_dir }}/member/snap directory."
  12. when: snapshots_result.matched | int == 0
  13. # Check if the member has v3 data already
  14. # Run the migration only if the data are v2
  15. - name: Check if there are any v3 data
  16. command: >
  17. etcdctl --cert {{ etcd_peer_cert_file }} --key {{ etcd_peer_key_file }} --cacert {{ etcd_peer_ca_file }} --endpoints 'https://{{ etcd_peer }}:{{ etcd_client_port }}' get "" --from-key --keys-only -w json --limit 1
  18. environment:
  19. ETCDCTL_API: 3
  20. register: l_etcdctl_output
  21. - fail:
  22. msg: "Unable to get a number of v3 keys"
  23. when: l_etcdctl_output.rc != 0
  24. - fail:
  25. msg: "The etcd has at least one v3 key"
  26. when: "'count' in (l_etcdctl_output.stdout | from_json) and (l_etcdctl_output.stdout | from_json).count != 0"
  27. # TODO(jchaloup): once the until loop can be used over include/block,
  28. # remove the repetive code
  29. # - until loop not supported over include statement (nor block)
  30. # https://github.com/ansible/ansible/issues/17098
  31. # - with_items not supported over block
  32. # Check the cluster status for the first time
  33. - include_tasks: check_cluster_status.yml
  34. # Check the cluster status for the second time
  35. - block:
  36. - debug:
  37. msg: "l_etcd_cluster_status_ok: {{ l_etcd_cluster_status_ok }}"
  38. - name: Wait a while before another check
  39. pause:
  40. seconds: 5
  41. when: not l_etcd_cluster_status_ok | bool
  42. - include_tasks: check_cluster_status.yml
  43. when: not l_etcd_cluster_status_ok | bool
  44. # Check the cluster status for the third time
  45. - block:
  46. - debug:
  47. msg: "l_etcd_cluster_status_ok: {{ l_etcd_cluster_status_ok }}"
  48. - name: Wait a while before another check
  49. pause:
  50. seconds: 5
  51. when: not l_etcd_cluster_status_ok | bool
  52. - include_tasks: check_cluster_status.yml
  53. when: not l_etcd_cluster_status_ok | bool