File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed
ansible/roles/elasticsearch/templates Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 1
1
actions:
2
2
1:
3
- action: close
3
+ action: delete_indices
4
4
description: >-
5
- Closes indices
5
+ Delete indicies
6
6
options:
7
7
ignore_empty_list: True
8
+ continue_if_exception: True
8
9
filters:
9
10
- filtertype: pattern
10
11
kind: prefix
@@ -14,13 +15,14 @@ actions:
14
15
direction: older
15
16
timestring: '%Y.%m.%d'
16
17
unit: days
17
- unit_count: "{{ elasticsearch_curator_soft_retention_period_days }}"
18
+ unit_count: "{{ elasticsearch_curator_hard_retention_period_days }}"
18
19
2:
19
- action: delete_indices
20
+ action: close
20
21
description: >-
21
- Delete indicies
22
+ Closes indices
22
23
options:
23
24
ignore_empty_list: True
25
+ continue_if_exception: True
24
26
filters:
25
27
- filtertype: pattern
26
28
kind: prefix
@@ -30,4 +32,4 @@ actions:
30
32
direction: older
31
33
timestring: '%Y.%m.%d'
32
34
unit: days
33
- unit_count: "{{ elasticsearch_curator_hard_retention_period_days }}"
35
+ unit_count: "{{ elasticsearch_curator_soft_retention_period_days }}"
Original file line number Diff line number Diff line change
1
+ ---
2
+ fixes :
3
+ - |
4
+ Continue to run all actions if one action failed in Elasticsearch
5
+ curator.
6
+ `LP#1954720 <https://bugs.launchpad.net/kolla/+bug/1954720>`__
You can’t perform that action at this time.
0 commit comments