|
@@ -94,12 +94,12 @@
|
|
|
- name: Install Master docker service file
|
|
|
template:
|
|
|
dest: "/etc/systemd/system/{{ openshift.common.service_type }}-master.service"
|
|
|
- src: master.docker.service.j2
|
|
|
+ src: docker/master.docker.service.j2
|
|
|
register: install_result
|
|
|
when: openshift.common.is_containerized | bool and not openshift_master_ha | bool
|
|
|
-
|
|
|
+
|
|
|
- name: Create openshift.common.data_dir
|
|
|
- file:
|
|
|
+ file:
|
|
|
path: "{{ openshift.common.data_dir }}"
|
|
|
state: directory
|
|
|
mode: 0755
|
|
@@ -174,31 +174,45 @@
|
|
|
when: openshift.common.is_containerized | bool
|
|
|
|
|
|
# workaround for missing systemd unit files for controllers/api
|
|
|
-- name: Create the api service file
|
|
|
+- name: Create the systemd unit files
|
|
|
template:
|
|
|
- src: atomic-openshift-master-api{{ ha_suffix }}.service.j2
|
|
|
- dest: "{{ ha_svcdir }}/{{ openshift.common.service_type }}-master-api.service"
|
|
|
+ src: "{{ ha_svc_template_path }}/atomic-openshift-master-{{ item }}.service.j2"
|
|
|
+ dest: "{{ ha_svcdir }}/{{ openshift.common.service_type }}-master-{{ item }}.service"
|
|
|
when: openshift_master_ha | bool and openshift_master_cluster_method == "native"
|
|
|
-- name: Create the controllers service file
|
|
|
- template:
|
|
|
- src: atomic-openshift-master-controllers{{ ha_suffix }}.service.j2
|
|
|
- dest: "{{ ha_svcdir }}/{{ openshift.common.service_type }}-master-controllers.service"
|
|
|
- when: openshift_master_ha | bool and openshift_master_cluster_method == "native"
|
|
|
-- name: Create the api env file
|
|
|
+ with_items:
|
|
|
+ - api
|
|
|
+ - controllers
|
|
|
+ register: create_unit_files
|
|
|
+
|
|
|
+- command: systemctl daemon-reload
|
|
|
+ when: create_unit_files | changed
|
|
|
+# end workaround for missing systemd unit files
|
|
|
+
|
|
|
+- name: Create the master api service env file
|
|
|
template:
|
|
|
- src: atomic-openshift-master-api.j2
|
|
|
+ src: "{{ ha_svc_template_path }}/atomic-openshift-master-api.j2"
|
|
|
dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-api
|
|
|
force: no
|
|
|
when: openshift_master_ha | bool and openshift_master_cluster_method == "native"
|
|
|
-- name: Create the controllers env file
|
|
|
+ notify:
|
|
|
+ - restart master api
|
|
|
+
|
|
|
+- name: Create the master controllers service env file
|
|
|
template:
|
|
|
- src: atomic-openshift-master-controllers.j2
|
|
|
+ src: "{{ ha_svc_template_path }}/atomic-openshift-master-controllers.j2"
|
|
|
dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-controllers
|
|
|
force: no
|
|
|
when: openshift_master_ha | bool and openshift_master_cluster_method == "native"
|
|
|
-- command: systemctl daemon-reload
|
|
|
- when: openshift_master_ha | bool and openshift_master_cluster_method == "native"
|
|
|
-# end workaround for missing systemd unit files
|
|
|
+ notify:
|
|
|
+ - restart master controllers
|
|
|
+
|
|
|
+- name: Create the master service env file
|
|
|
+ template:
|
|
|
+ src: "atomic-openshift-master.j2"
|
|
|
+ dest: /etc/sysconfig/{{ openshift.common.service_type }}-master
|
|
|
+ force: no
|
|
|
+ notify:
|
|
|
+ - restart master
|
|
|
|
|
|
- name: Create session secrets file
|
|
|
template:
|
|
@@ -223,48 +237,6 @@
|
|
|
- restart master api
|
|
|
- restart master controllers
|
|
|
|
|
|
-- name: Configure master settings
|
|
|
- lineinfile:
|
|
|
- dest: /etc/sysconfig/{{ openshift.common.service_type }}-master
|
|
|
- regexp: "{{ item.regex }}"
|
|
|
- line: "{{ item.line }}"
|
|
|
- create: yes
|
|
|
- with_items:
|
|
|
- - regex: '^OPTIONS='
|
|
|
- line: "OPTIONS=--loglevel={{ openshift.master.debug_level }}"
|
|
|
- - regex: '^CONFIG_FILE='
|
|
|
- line: "CONFIG_FILE={{ openshift_master_config_file }}"
|
|
|
- notify:
|
|
|
- - restart master
|
|
|
-
|
|
|
-- name: Configure master api settings
|
|
|
- lineinfile:
|
|
|
- dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-api
|
|
|
- regexp: "{{ item.regex }}"
|
|
|
- line: "{{ item.line }}"
|
|
|
- with_items:
|
|
|
- - regex: '^OPTIONS='
|
|
|
- line: "OPTIONS=--loglevel={{ openshift.master.debug_level }} --listen=https://{{ openshift.master.bind_addr }}:{{ openshift.master.api_port }} --master=https://{{ openshift.common.ip }}:{{ openshift.master.api_port }}"
|
|
|
- - regex: '^CONFIG_FILE='
|
|
|
- line: "CONFIG_FILE={{ openshift_master_config_file }}"
|
|
|
- when: openshift_master_ha | bool and openshift_master_cluster_method == "native"
|
|
|
- notify:
|
|
|
- - restart master api
|
|
|
-
|
|
|
-- name: Configure master controller settings
|
|
|
- lineinfile:
|
|
|
- dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-controllers
|
|
|
- regexp: "{{ item.regex }}"
|
|
|
- line: "{{ item.line }}"
|
|
|
- with_items:
|
|
|
- - regex: '^OPTIONS='
|
|
|
- line: "OPTIONS=--loglevel={{ openshift.master.debug_level }} --listen=https://{{ openshift.master.bind_addr }}:{{ openshift.master.controllers_port }}"
|
|
|
- - regex: '^CONFIG_FILE='
|
|
|
- line: "CONFIG_FILE={{ openshift_master_config_file }}"
|
|
|
- when: openshift_master_ha | bool and openshift_master_cluster_method == "native"
|
|
|
- notify:
|
|
|
- - restart master controllers
|
|
|
-
|
|
|
- name: Start and enable master
|
|
|
service: name={{ openshift.common.service_type }}-master enabled=yes state=started
|
|
|
when: not openshift_master_ha | bool
|