systemd_units.yml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. ---
  2. # systemd_units.yml is included both in the openshift_master role and in the upgrade
  3. # playbooks.
  4. - name: Set HA Service Info for containerized installs
  5. set_fact:
  6. containerized_svc_dir: "/etc/systemd/system"
  7. ha_svc_template_path: "docker-cluster"
  8. when:
  9. - openshift.common.is_containerized | bool
  10. - include_tasks: registry_auth.yml
  11. - name: Disable the legacy master service if it exists
  12. systemd:
  13. name: "{{ openshift.common.service_type }}-master"
  14. state: stopped
  15. enabled: no
  16. masked: yes
  17. ignore_errors: true
  18. - name: Remove the legacy master service if it exists
  19. file:
  20. path: "{{ containerized_svc_dir }}/{{ openshift.common.service_type }}-master.service"
  21. state: absent
  22. ignore_errors: true
  23. when:
  24. - openshift.master.cluster_method == "native"
  25. - not l_is_master_system_container | bool
  26. # This is the image used for both HA and non-HA clusters:
  27. - name: Pre-pull master image
  28. command: >
  29. docker pull {{ openshift.master.master_image }}:{{ openshift_image_tag }}
  30. register: l_pull_result
  31. changed_when: "'Downloaded newer image' in l_pull_result.stdout"
  32. when:
  33. - openshift.common.is_containerized | bool
  34. - not l_is_master_system_container | bool
  35. - name: Create the ha systemd unit files
  36. template:
  37. src: "{{ ha_svc_template_path }}/atomic-openshift-master-{{ item }}.service.j2"
  38. dest: "{{ containerized_svc_dir }}/{{ openshift.common.service_type }}-master-{{ item }}.service"
  39. when:
  40. - openshift.master.cluster_method == "native"
  41. - not l_is_master_system_container | bool
  42. with_items:
  43. - api
  44. - controllers
  45. register: l_create_ha_unit_files
  46. - command: systemctl daemon-reload
  47. when:
  48. - l_create_ha_unit_files | changed
  49. # end workaround for missing systemd unit files
  50. - name: enable master services
  51. systemd:
  52. name: "{{ openshift.common.service_type }}-master-{{ item }}"
  53. enabled: yes
  54. with_items:
  55. - api
  56. - controllers
  57. when:
  58. - openshift.master.cluster_method == "native"
  59. - not l_is_master_system_container | bool
  60. - name: Preserve Master API Proxy Config options
  61. command: grep PROXY /etc/sysconfig/{{ openshift.common.service_type }}-master-api
  62. register: l_master_api_proxy
  63. when:
  64. - openshift.master.cluster_method == "native"
  65. failed_when: false
  66. changed_when: false
  67. - name: Preserve Master API AWS options
  68. command: grep AWS_ /etc/sysconfig/{{ openshift.common.service_type }}-master-api
  69. register: master_api_aws
  70. when:
  71. - openshift.master.cluster_method == "native"
  72. failed_when: false
  73. changed_when: false
  74. - name: Create the master api service env file
  75. template:
  76. src: "{{ ha_svc_template_path }}/atomic-openshift-master-api.j2"
  77. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-api
  78. backup: true
  79. when:
  80. - openshift.master.cluster_method == "native"
  81. notify:
  82. - restart master api
  83. - name: Restore Master API Proxy Config Options
  84. when:
  85. - openshift.master.cluster_method == "native"
  86. - l_master_api_proxy.rc == 0
  87. - "'http_proxy' not in openshift.common"
  88. - "'https_proxy' not in openshift.common"
  89. lineinfile:
  90. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-api
  91. line: "{{ item }}"
  92. with_items: "{{ l_master_api_proxy.stdout_lines | default([]) }}"
  93. - name: Restore Master API AWS Options
  94. when:
  95. - openshift.master.cluster_method == "native"
  96. - master_api_aws.rc == 0
  97. - 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)
  98. lineinfile:
  99. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-api
  100. line: "{{ item }}"
  101. with_items: "{{ master_api_aws.stdout_lines | default([]) }}"
  102. no_log: True
  103. - name: Preserve Master Controllers Proxy Config options
  104. command: grep PROXY /etc/sysconfig/{{ openshift.common.service_type }}-master-controllers
  105. register: master_controllers_proxy
  106. when:
  107. - openshift.master.cluster_method == "native"
  108. failed_when: false
  109. changed_when: false
  110. - name: Preserve Master Controllers AWS options
  111. command: grep AWS_ /etc/sysconfig/{{ openshift.common.service_type }}-master-controllers
  112. register: master_controllers_aws
  113. when:
  114. - openshift.master.cluster_method == "native"
  115. failed_when: false
  116. changed_when: false
  117. - name: Create the master controllers service env file
  118. template:
  119. src: "{{ ha_svc_template_path }}/atomic-openshift-master-controllers.j2"
  120. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-controllers
  121. backup: true
  122. when:
  123. - openshift.master.cluster_method == "native"
  124. notify:
  125. - restart master controllers
  126. - name: Restore Master Controllers Proxy Config Options
  127. lineinfile:
  128. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-controllers
  129. line: "{{ item }}"
  130. with_items: "{{ master_controllers_proxy.stdout_lines | default([]) }}"
  131. when:
  132. - openshift.master.cluster_method == "native"
  133. - master_controllers_proxy.rc == 0
  134. - "'http_proxy' not in openshift.common"
  135. - "'https_proxy' not in openshift.common"
  136. - name: Restore Master Controllers AWS Options
  137. lineinfile:
  138. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-controllers
  139. line: "{{ item }}"
  140. with_items: "{{ master_controllers_aws.stdout_lines | default([]) }}"
  141. when:
  142. - openshift.master.cluster_method == "native"
  143. - master_controllers_aws.rc == 0
  144. - 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)