diff options
Diffstat (limited to 'playbooks/common/openshift-checks')
| -rw-r--r-- | playbooks/common/openshift-checks/install.yml | 16 | 
1 files changed, 10 insertions, 6 deletions
| diff --git a/playbooks/common/openshift-checks/install.yml b/playbooks/common/openshift-checks/install.yml index 6701a2e15..93cf6c359 100644 --- a/playbooks/common/openshift-checks/install.yml +++ b/playbooks/common/openshift-checks/install.yml @@ -1,13 +1,15 @@  ---  - name: Health Check Checkpoint Start -  hosts: oo_all_hosts +  hosts: all    gather_facts: false    tasks:    - name: Set Health Check 'In Progress' +    run_once: true      set_stats:        data: -        installer_phase_health: "In Progress" -      aggregate: false +        installer_phase_health: +          status: "In Progress" +          start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"  - name: OpenShift Health Checks    hosts: oo_all_hosts @@ -37,11 +39,13 @@        - docker_image_availability  - name: Health Check Checkpoint End -  hosts: oo_all_hosts +  hosts: all    gather_facts: false    tasks:    - name: Set Health Check 'Complete' +    run_once: true      set_stats:        data: -        installer_phase_health: "Complete" -      aggregate: false +        installer_phase_health: +          status: "Complete" +          end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}" | 
