summaryrefslogtreecommitdiffstats
path: root/roles/openshift_master/tasks
diff options
context:
space:
mode:
authorMichael Gugino <mgugino@redhat.com>2017-11-03 11:57:18 -0400
committerMichael Gugino <mgugino@redhat.com>2017-11-03 13:11:58 -0400
commitbaa6713c9581261acacef9b8dcf6fad51cfdac65 (patch)
treea86e9e6f33299bdee3e1215d2624de0eaf1aa822 /roles/openshift_master/tasks
parentc99bfde17bca322e8a89ba3e9dc4e4fdc2776448 (diff)
downloadopenshift-baa6713c9581261acacef9b8dcf6fad51cfdac65.tar.gz
openshift-baa6713c9581261acacef9b8dcf6fad51cfdac65.tar.bz2
openshift-baa6713c9581261acacef9b8dcf6fad51cfdac65.tar.xz
openshift-baa6713c9581261acacef9b8dcf6fad51cfdac65.zip
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
Diffstat (limited to 'roles/openshift_master/tasks')
-rw-r--r--roles/openshift_master/tasks/systemd_units.yml11
1 files changed, 11 insertions, 0 deletions
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