123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- ---
- # systemd_units.yml is included both in the openshift_master role and in the upgrade
- # playbooks.
- - name: Set HA Service Info for containerized installs
- set_fact:
- containerized_svc_dir: "/etc/systemd/system"
- ha_svc_template_path: "docker-cluster"
- when:
- - openshift.common.is_containerized | bool
- - include_tasks: registry_auth.yml
- - name: Disable the legacy master service if it exists
- systemd:
- name: "{{ openshift_service_type }}-master"
- state: stopped
- enabled: no
- masked: yes
- ignore_errors: true
- - name: Remove the legacy master service if it exists
- file:
- path: "{{ containerized_svc_dir }}/{{ openshift_service_type }}-master.service"
- state: absent
- ignore_errors: true
- when:
- - not l_is_master_system_container | bool
- # This is the image used for both HA and non-HA clusters:
- - name: Pre-pull master image
- command: >
- docker pull {{ openshift.master.master_image }}:{{ openshift_image_tag }}
- register: l_pull_result
- changed_when: "'Downloaded newer image' in l_pull_result.stdout"
- when:
- - openshift.common.is_containerized | bool
- - not l_is_master_system_container | bool
- - name: Create the ha systemd unit files
- template:
- src: "{{ ha_svc_template_path }}/atomic-openshift-master-{{ item }}.service.j2"
- dest: "{{ containerized_svc_dir }}/{{ openshift_service_type }}-master-{{ item }}.service"
- when:
- - not l_is_master_system_container | bool
- with_items:
- - api
- - controllers
- register: l_create_ha_unit_files
- - command: systemctl daemon-reload
- when:
- - l_create_ha_unit_files is changed
- # end workaround for missing systemd unit files
- - name: enable master services
- systemd:
- name: "{{ openshift_service_type }}-master-{{ item }}"
- enabled: yes
- with_items:
- - api
- - controllers
- when:
- - not l_is_master_system_container | bool
- - name: Preserve Master API Proxy Config options
- command: grep PROXY /etc/sysconfig/{{ openshift_service_type }}-master-api
- register: l_master_api_proxy
- failed_when: false
- changed_when: false
- - name: Preserve Master API AWS options
- command: grep AWS_ /etc/sysconfig/{{ openshift_service_type }}-master-api
- register: master_api_aws
- failed_when: false
- changed_when: false
- - name: Create the master api service env file
- template:
- src: "{{ ha_svc_template_path }}/atomic-openshift-master-api.j2"
- dest: /etc/sysconfig/{{ openshift_service_type }}-master-api
- backup: true
- notify:
- - restart master api
- - name: Restore Master API Proxy Config Options
- when:
- - l_master_api_proxy.rc == 0
- - "'http_proxy' not in openshift.common"
- - "'https_proxy' not in openshift.common"
- lineinfile:
- dest: /etc/sysconfig/{{ openshift_service_type }}-master-api
- line: "{{ item }}"
- with_items: "{{ l_master_api_proxy.stdout_lines | default([]) }}"
- - name: Restore Master API AWS Options
- when:
- - master_api_aws.rc == 0
- - not (openshift_cloudprovider_kind is defined and openshift_cloudprovider_kind == 'aws' and openshift_cloudprovider_aws_access_key is defined and openshift_cloudprovider_aws_secret_key is defined)
- lineinfile:
- dest: /etc/sysconfig/{{ openshift_service_type }}-master-api
- line: "{{ item }}"
- with_items: "{{ master_api_aws.stdout_lines | default([]) }}"
- no_log: True
- - name: Preserve Master Controllers Proxy Config options
- command: grep PROXY /etc/sysconfig/{{ openshift_service_type }}-master-controllers
- register: master_controllers_proxy
- failed_when: false
- changed_when: false
- - name: Preserve Master Controllers AWS options
- command: grep AWS_ /etc/sysconfig/{{ openshift_service_type }}-master-controllers
- register: master_controllers_aws
- failed_when: false
- changed_when: false
- - name: Create the master controllers service env file
- template:
- src: "{{ ha_svc_template_path }}/atomic-openshift-master-controllers.j2"
- dest: /etc/sysconfig/{{ openshift_service_type }}-master-controllers
- backup: true
- notify:
- - restart master controllers
- - name: Restore Master Controllers Proxy Config Options
- lineinfile:
- dest: /etc/sysconfig/{{ openshift_service_type }}-master-controllers
- line: "{{ item }}"
- with_items: "{{ master_controllers_proxy.stdout_lines | default([]) }}"
- when:
- - master_controllers_proxy.rc == 0
- - "'http_proxy' not in openshift.common"
- - "'https_proxy' not in openshift.common"
- - name: Restore Master Controllers AWS Options
- lineinfile:
- dest: /etc/sysconfig/{{ openshift_service_type }}-master-controllers
- line: "{{ item }}"
- with_items: "{{ master_controllers_aws.stdout_lines | default([]) }}"
- when:
- - master_controllers_aws.rc == 0
- - not (openshift_cloudprovider_kind is defined and openshift_cloudprovider_kind == 'aws' and openshift_cloudprovider_aws_access_key is defined and openshift_cloudprovider_aws_secret_key is defined)
|