Serialise operations on components which may be highly available

Minimal playbook changes to reduce the risk out outages. This
could be further improved by contacting the elasticsearch API
during actions to ensure that each node recovers before moving
on to the next.

Change-Id: If106efd5700c770a8256adb11cb4735d11cbed5c
This commit is contained in:
Andrew Bonney 2022-05-13 13:12:01 +01:00
parent dff4647b70
commit 825aa0d9ea
3 changed files with 3 additions and 1 deletions

View File

@ -14,7 +14,7 @@
- name: Install Elastic Search
hosts: elastic:kibana
become: true
serial: 1
vars_files:
- vars/variables.yml

View File

@ -14,6 +14,7 @@
- name: Install Kibana
hosts: kibana
become: true
serial: [1, '100%']
vars_files:
- vars/variables.yml

View File

@ -14,6 +14,7 @@
- name: Install Logstash
hosts: logstash
become: true
serial: [1, '100%']
vars_files:
- vars/variables.yml