diff options
author | Zohar Galor <zgalor@redhat.com> | 2017-10-19 12:45:26 +0300 |
---|---|---|
committer | Zohar Galor <zgalor@redhat.com> | 2017-10-19 12:49:18 +0300 |
commit | 76d69e29bd0dadfbda1de9d2a42274a234b3616c (patch) | |
tree | 3aa32569979b9c8baa338df1d54a973979a1c09a /playbooks/common | |
parent | 64f452f9081e380db41acf588a28fe4bb79a4e9e (diff) | |
download | openshift-76d69e29bd0dadfbda1de9d2a42274a234b3616c.tar.gz openshift-76d69e29bd0dadfbda1de9d2a42274a234b3616c.tar.bz2 openshift-76d69e29bd0dadfbda1de9d2a42274a234b3616c.tar.xz openshift-76d69e29bd0dadfbda1de9d2a42274a234b3616c.zip |
Add installer checkpoint for prometheus
Add checkpoint steps for full cluster install and individual entry point playbook.
Diffstat (limited to 'playbooks/common')
-rw-r--r-- | playbooks/common/openshift-cluster/openshift_prometheus.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/playbooks/common/openshift-cluster/openshift_prometheus.yml b/playbooks/common/openshift-cluster/openshift_prometheus.yml index ac2d250a3..a73b294a5 100644 --- a/playbooks/common/openshift-cluster/openshift_prometheus.yml +++ b/playbooks/common/openshift-cluster/openshift_prometheus.yml @@ -1,5 +1,25 @@ --- +- name: Prometheus Install Checkpoint Start + hosts: oo_all_hosts + gather_facts: false + tasks: + - name: Set Prometheus install 'In Progress' + set_stats: + data: + installer_phase_prometheus: "In Progress" + aggregate: false + - name: Create Hosted Resources - openshift_prometheus hosts: oo_first_master roles: - role: openshift_prometheus + +- name: Prometheus Install Checkpoint End + hosts: oo_all_hosts + gather_facts: false + tasks: + - name: Set Prometheus install 'Complete' + set_stats: + data: + installer_phase_prometheus: "Complete" + aggregate: false |