systemd_units.yml 7.0 KB

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