We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77f15b0 commit a1f3eb7Copy full SHA for a1f3eb7
ansible/roles/es-gcs-snapshot/defaults/main.yml
@@ -7,6 +7,6 @@ snapshot_create_request_body: {
7
}
8
9
# Override these values
10
-es_snapshot_host: "localhost"
+es_snapshot_host: "{{ ansible_host }}"
11
snapshot_base_path: "default"
12
-es_gcs_backup_folder_name: "elasticsearch-snapshots"
+es_gcs_backup_folder_name: "elasticsearch-snapshots-{{ es_snapshot_host }}"
ansible/roles/es-gcs-snapshot/tasks/main.yml
@@ -39,4 +39,4 @@
39
register: result
40
until: result.json.snapshots[0].state == 'SUCCESS'
41
retries: 120
42
- delay: 10
+ delay: 60
0 commit comments