diff options
| author | Michael Gugino <mgugino@redhat.com> | 2017-11-03 11:57:18 -0400 | 
|---|---|---|
| committer | Michael Gugino <mgugino@redhat.com> | 2017-11-03 13:11:58 -0400 | 
| commit | baa6713c9581261acacef9b8dcf6fad51cfdac65 (patch) | |
| tree | a86e9e6f33299bdee3e1215d2624de0eaf1aa822 | |
| parent | c99bfde17bca322e8a89ba3e9dc4e4fdc2776448 (diff) | |
Fix master upgrade version detect and systemd enable
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1508755
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1509158
| -rwxr-xr-x | roles/openshift_facts/library/openshift_facts.py | 2 | ||||
| -rw-r--r-- | roles/openshift_master/tasks/systemd_units.yml | 11 | 
2 files changed, 12 insertions, 1 deletions
diff --git a/roles/openshift_facts/library/openshift_facts.py b/roles/openshift_facts/library/openshift_facts.py index 33028fea4..a88945538 100755 --- a/roles/openshift_facts/library/openshift_facts.py +++ b/roles/openshift_facts/library/openshift_facts.py @@ -1289,7 +1289,7 @@ def get_container_openshift_version(facts):      If containerized, see if we can determine the installed version via the      systemd environment files.      """ -    for filename in ['/etc/sysconfig/%s-master', '/etc/sysconfig/%s-node']: +    for filename in ['/etc/sysconfig/%s-master-controllers', '/etc/sysconfig/%s-node']:          env_path = filename % facts['common']['service_type']          if not os.path.exists(env_path):              continue diff --git a/roles/openshift_master/tasks/systemd_units.yml b/roles/openshift_master/tasks/systemd_units.yml index 5751723ab..8420dfb8c 100644 --- a/roles/openshift_master/tasks/systemd_units.yml +++ b/roles/openshift_master/tasks/systemd_units.yml @@ -58,6 +58,17 @@    - l_create_ha_unit_files | changed  # end workaround for missing systemd unit files +- name: enable master services +  systemd: +    name: "{{ openshift.common.service_type }}-master-{{ item }}" +    enabled: yes +  with_items: +  - api +  - controllers +  when: +  - openshift.master.cluster_method == "native" +  - not openshift.common.is_master_system_container | bool +  - name: Preserve Master API Proxy Config options    command: grep PROXY /etc/sysconfig/{{ openshift.common.service_type }}-master-api    register: l_master_api_proxy  | 
