systemd_units.yml 5.6 KB

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