systemd_units.yml 7.3 KB

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