diff options
author | Russell Teague <rteague@redhat.com> | 2017-09-25 14:54:26 -0400 |
---|---|---|
committer | Russell Teague <rteague@redhat.com> | 2017-09-27 14:48:59 -0400 |
commit | c096aff90d117e485e5bea17c9386d16c571fb5d (patch) | |
tree | 2fe33915a2f0f9b4c97a6edafe2ba56bf62ccc7d /playbooks/common/openshift-master/config.yml | |
parent | 54c41923ed30ba7e46dd12d15157195feca093a6 (diff) | |
download | openshift-c096aff90d117e485e5bea17c9386d16c571fb5d.tar.gz openshift-c096aff90d117e485e5bea17c9386d16c571fb5d.tar.bz2 openshift-c096aff90d117e485e5bea17c9386d16c571fb5d.tar.xz openshift-c096aff90d117e485e5bea17c9386d16c571fb5d.zip |
OpenShift-Ansible Installer Checkpointing
- Added installer_checkpoint role and callback plugin
- Added checkpoint 'Start' and 'End' plays to each installation phase
Additional items related to enabling proper checkpointing:
- Removed openshift_set_hostname and related task (related to 3.0)
- Added openshift-hosted entry point playbook
- Moved openshift metrics and logging out of openshift_hosted playbook
- Moved API Aggregation play to master install
Diffstat (limited to 'playbooks/common/openshift-master/config.yml')
-rw-r--r-- | playbooks/common/openshift-master/config.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/playbooks/common/openshift-master/config.yml b/playbooks/common/openshift-master/config.yml index 2e7646372..38257b803 100644 --- a/playbooks/common/openshift-master/config.yml +++ b/playbooks/common/openshift-master/config.yml @@ -1,4 +1,15 @@ --- +- name: Master Install Checkpoint Start + hosts: localhost + connection: local + gather_facts: false + tasks: + - name: Set Master install 'In Progress' + set_stats: + data: + installer_phase_master: "In Progress" + aggregate: false + - name: Disable excluders hosts: oo_masters_to_config gather_facts: no @@ -231,6 +242,12 @@ group_by: key=oo_masters_deployment_type_{{ openshift.common.deployment_type }} changed_when: False +- name: Configure API Aggregation on masters + hosts: oo_masters + serial: 1 + tasks: + - include: tasks/wire_aggregator.yml + - name: Re-enable excluder if it was previously enabled hosts: oo_masters_to_config gather_facts: no @@ -238,3 +255,14 @@ - role: openshift_excluder r_openshift_excluder_action: enable r_openshift_excluder_service_type: "{{ openshift.common.service_type }}" + +- name: Master Install Checkpoint End + hosts: localhost + connection: local + gather_facts: false + tasks: + - name: Set Master install 'Complete' + set_stats: + data: + installer_phase_master: "Complete" + aggregate: false |