Przeglądaj źródła

check presence of v2 snapshot before the migration proceeds

Jan Chaloupka 7 lat temu
rodzic
commit
8d5e7b36d5
1 zmienionych plików z 11 dodań i 0 usunięć
  1. 11 0
      roles/etcd/tasks/migration/check.yml

+ 11 - 0
roles/etcd/tasks/migration/check.yml

@@ -3,6 +3,17 @@
 # Check the cluster is healthy
 - include: check_cluster_health.yml
 
+# Check if there is at least one v2 snapshot
+- name: Check if there is at least one v2 snapshot
+  find:
+    paths: "{{ etcd_data_dir }}/member/snap"
+    patterns: '*.snap'
+  register: snapshots_result
+
+- fail:
+    msg: "Before the migration can proceed the etcd member must write down at least one snapshot under {{ etcd_data_dir }}/member/snap directory."
+  when: snapshots_result.matched | int == 0
+
 # Check if the member has v3 data already
 # Run the migration only if the data are v2
 - name: Check if there are any v3 data