summaryrefslogtreecommitdiffstats
path: root/roles/openshift_master/tasks
diff options
context:
space:
mode:
authorOpenShift Bot <eparis+openshiftbot@redhat.com>2017-08-01 20:44:29 -0400
committerGitHub <noreply@github.com>2017-08-01 20:44:29 -0400
commit60360f5e608c7b813e6782747b6c64a68d5020da (patch)
treef422a371efb0d6f835933c035e21ffec0dbf5452 /roles/openshift_master/tasks
parent01e48932d615dd17c316c1b9ab00216ab0f3f78d (diff)
parent88c946de1ce8299fa8cda05c537e1f90a4c29512 (diff)
downloadopenshift-60360f5e608c7b813e6782747b6c64a68d5020da.tar.gz
openshift-60360f5e608c7b813e6782747b6c64a68d5020da.tar.bz2
openshift-60360f5e608c7b813e6782747b6c64a68d5020da.tar.xz
openshift-60360f5e608c7b813e6782747b6c64a68d5020da.zip
Merge pull request #4894 from tbielawa/reg-dns-scaleup-bz1469336
Merged by openshift-bot
Diffstat (limited to 'roles/openshift_master/tasks')
-rw-r--r--roles/openshift_master/tasks/systemd_units.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/openshift_master/tasks/systemd_units.yml b/roles/openshift_master/tasks/systemd_units.yml
index dfc255b3d..d71ad3459 100644
--- a/roles/openshift_master/tasks/systemd_units.yml
+++ b/roles/openshift_master/tasks/systemd_units.yml
@@ -23,7 +23,7 @@
when: openshift.common.is_containerized | bool and not openshift.common.is_master_system_container | bool
# workaround for missing systemd unit files
-- name: Create the systemd unit files
+- name: "Create the {{ openshift.common.service_type }} systemd unit file"
template:
src: "master_docker/master.docker.service.j2"
dest: "{{ containerized_svc_dir }}/{{ openshift.common.service_type }}-master.service"
@@ -32,7 +32,7 @@
- not openshift.common.is_master_system_container | bool
register: create_master_unit_file
-- name: Install Master service file
+- name: "Install {{ openshift.common.service_type }} systemd unit file"
copy:
dest: "/etc/systemd/system/{{ openshift.common.service_type }}-master.service"
src: "{{ openshift.common.service_type }}-master.service"
@@ -44,7 +44,7 @@
- command: systemctl daemon-reload
when: create_master_unit_file | changed
-- name: Create the ha systemd unit files
+- name: Create the ha systemd unit files for api and controller services
template:
src: "{{ ha_svc_template_path }}/atomic-openshift-master-{{ item }}.service.j2"
dest: "{{ containerized_svc_dir }}/{{ openshift.common.service_type }}-master-{{ item }}.service"