diff options
author | Russell Teague <rteague@redhat.com> | 2017-10-30 10:44:45 -0400 |
---|---|---|
committer | Russell Teague <rteague@redhat.com> | 2017-10-31 11:00:11 -0400 |
commit | acc1820918f0c8123bff8799dd723929d8baa0e1 (patch) | |
tree | 425e6d5eae2454a20e2cac992ba7a13fd592038b /playbooks/common/openshift-loadbalancer | |
parent | 2d0365bfabc225dcb91a0df9f37ecda2bd606602 (diff) | |
download | openshift-acc1820918f0c8123bff8799dd723929d8baa0e1.tar.gz openshift-acc1820918f0c8123bff8799dd723929d8baa0e1.tar.bz2 openshift-acc1820918f0c8123bff8799dd723929d8baa0e1.tar.xz openshift-acc1820918f0c8123bff8799dd723929d8baa0e1.zip |
Add execution times to checkpoint status
Diffstat (limited to 'playbooks/common/openshift-loadbalancer')
-rw-r--r-- | playbooks/common/openshift-loadbalancer/config.yml | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/playbooks/common/openshift-loadbalancer/config.yml b/playbooks/common/openshift-loadbalancer/config.yml index 2a703cb61..d737b836b 100644 --- a/playbooks/common/openshift-loadbalancer/config.yml +++ b/playbooks/common/openshift-loadbalancer/config.yml @@ -1,13 +1,15 @@ --- - name: Load Balancer Install Checkpoint Start - hosts: oo_all_hosts + hosts: all gather_facts: false tasks: - name: Set load balancer install 'In Progress' + run_once: true set_stats: data: - installer_phase_loadbalancer: "In Progress" - aggregate: false + installer_phase_loadbalancer: + status: "In Progress" + start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}" - name: Configure firewall and docker for load balancers hosts: oo_lb_to_config:!oo_masters_to_config:!oo_nodes_to_config @@ -37,11 +39,13 @@ - role: tuned - name: Load Balancer Install Checkpoint End - hosts: oo_all_hosts + hosts: all gather_facts: false tasks: - name: Set load balancer install 'Complete' + run_once: true set_stats: data: - installer_phase_loadbalancer: "Complete" - aggregate: false + installer_phase_loadbalancer: + status: "Complete" + end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}" |