summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-glusterfs
diff options
context:
space:
mode:
authorRussell Teague <rteague@redhat.com>2017-10-30 10:44:45 -0400
committerRussell Teague <rteague@redhat.com>2017-10-31 11:00:11 -0400
commitacc1820918f0c8123bff8799dd723929d8baa0e1 (patch)
tree425e6d5eae2454a20e2cac992ba7a13fd592038b /playbooks/common/openshift-glusterfs
parent2d0365bfabc225dcb91a0df9f37ecda2bd606602 (diff)
downloadopenshift-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-glusterfs')
-rw-r--r--playbooks/common/openshift-glusterfs/config.yml16
1 files changed, 10 insertions, 6 deletions
diff --git a/playbooks/common/openshift-glusterfs/config.yml b/playbooks/common/openshift-glusterfs/config.yml
index c2ae5f313..19e14ab3e 100644
--- a/playbooks/common/openshift-glusterfs/config.yml
+++ b/playbooks/common/openshift-glusterfs/config.yml
@@ -1,13 +1,15 @@
---
- name: GlusterFS Install Checkpoint Start
- hosts: oo_all_hosts
+ hosts: all
gather_facts: false
tasks:
- name: Set GlusterFS install 'In Progress'
+ run_once: true
set_stats:
data:
- installer_phase_glusterfs: "In Progress"
- aggregate: false
+ installer_phase_glusterfs:
+ status: "In Progress"
+ start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
- name: Open firewall ports for GlusterFS nodes
hosts: glusterfs
@@ -46,11 +48,13 @@
when: groups.oo_glusterfs_to_config | default([]) | count > 0
- name: GlusterFS Install Checkpoint End
- hosts: oo_all_hosts
+ hosts: all
gather_facts: false
tasks:
- name: Set GlusterFS install 'Complete'
+ run_once: true
set_stats:
data:
- installer_phase_glusterfs: "Complete"
- aggregate: false
+ installer_phase_glusterfs:
+ status: "Complete"
+ end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"