[ffwd] Don't run healthcheck on redis if it's not present

Redis might not be present on the deployment so we shouldn't
check it's status post upgrade.

Change-Id: Ie11acbf29fc8b9025756b5516fe2d9b4326b5425
Resolves: UPG-2446
This commit is contained in:
Lukas Bezdicka 2020-12-18 13:50:30 +01:00
parent c4193adc62
commit 87c31a948b
1 changed files with 6 additions and 0 deletions

View File

@ -5,4 +5,10 @@
- 'haproxy'
- 'haproxy_backend'
- 'rabbitmq'
- name: Running post upgrade scripts for {{ node_name | splitext | first }}
shell: "set -o pipefail && {{ working_dir }}/{{ node_name | splitext | first }}_post/{{ item }}.sh"
when:
- item in inventory_hostmap
loop:
- 'redis'