diff options
author | Jason DeTiberus <jdetiber@redhat.com> | 2015-10-21 13:41:56 -0400 |
---|---|---|
committer | Jason DeTiberus <jdetiber@redhat.com> | 2015-10-22 11:15:57 -0400 |
commit | 3e44d3aa6d35c62c57c102f5a8fec4bf86d2a1b5 (patch) | |
tree | 05cb62765b16528e22db42afa52ead62a5919b0a /playbooks/common | |
parent | 917f8b157b10ee605cee75065fe874c5561a0573 (diff) | |
download | openshift-3e44d3aa6d35c62c57c102f5a8fec4bf86d2a1b5.tar.gz openshift-3e44d3aa6d35c62c57c102f5a8fec4bf86d2a1b5.tar.bz2 openshift-3e44d3aa6d35c62c57c102f5a8fec4bf86d2a1b5.tar.xz openshift-3e44d3aa6d35c62c57c102f5a8fec4bf86d2a1b5.zip |
Fix test and workaround for rpm generated configs
- fixed inconcistency in naming for rpm generated config test
- refactoring to fix logic after the ha master refactoring had broken the
previous steps
Diffstat (limited to 'playbooks/common')
-rw-r--r-- | playbooks/common/openshift-master/config.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/playbooks/common/openshift-master/config.yml b/playbooks/common/openshift-master/config.yml index 0d78eca30..0a3fe90e1 100644 --- a/playbooks/common/openshift-master/config.yml +++ b/playbooks/common/openshift-master/config.yml @@ -2,6 +2,21 @@ - name: Set master facts and determine if external etcd certs need to be generated hosts: oo_masters_to_config pre_tasks: + - name: Check for RPM generated config marker file .config_managed + stat: + path: /etc/origin/.config_managed + register: rpmgenerated_config + + - name: Remove RPM generated config files if present + file: + path: "/etc/origin/{{ item }}" + state: absent + when: rpmgenerated_config.stat.exists == true and deployment_type in ['openshift-enterprise', 'atomic-enterprise'] + with_items: + - master + - node + - .config_managed + - set_fact: openshift_master_etcd_port: "{{ (etcd_client_port | default('2379')) if (groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config) else none }}" openshift_master_etcd_hosts: "{{ hostvars |