systemd_units.yml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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_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_service_type }}-master.service"
  21. state: absent
  22. ignore_errors: true
  23. when:
  24. - not l_is_master_system_container | bool
  25. # This is the image used for both HA and non-HA clusters:
  26. - name: Pre-pull master image
  27. command: >
  28. docker pull {{ openshift.master.master_image }}:{{ openshift_image_tag }}
  29. register: l_pull_result
  30. changed_when: "'Downloaded newer image' in l_pull_result.stdout"
  31. when:
  32. - openshift.common.is_containerized | bool
  33. - not l_is_master_system_container | bool
  34. - name: Create the ha systemd unit files
  35. template:
  36. src: "{{ ha_svc_template_path }}/atomic-openshift-master-{{ item }}.service.j2"
  37. dest: "{{ containerized_svc_dir }}/{{ openshift_service_type }}-master-{{ item }}.service"
  38. when:
  39. - not l_is_master_system_container | bool
  40. with_items:
  41. - api
  42. - controllers
  43. register: l_create_ha_unit_files
  44. - command: systemctl daemon-reload
  45. when:
  46. - l_create_ha_unit_files | changed
  47. # end workaround for missing systemd unit files
  48. - name: enable master services
  49. systemd:
  50. name: "{{ openshift_service_type }}-master-{{ item }}"
  51. enabled: yes
  52. with_items:
  53. - api
  54. - controllers
  55. when:
  56. - not l_is_master_system_container | bool
  57. - name: Preserve Master API Proxy Config options
  58. command: grep PROXY /etc/sysconfig/{{ openshift_service_type }}-master-api
  59. register: l_master_api_proxy
  60. failed_when: false
  61. changed_when: false
  62. - name: Preserve Master API AWS options
  63. command: grep AWS_ /etc/sysconfig/{{ openshift_service_type }}-master-api
  64. register: master_api_aws
  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_service_type }}-master-api
  71. backup: true
  72. notify:
  73. - restart master api
  74. - name: Restore Master API Proxy Config Options
  75. when:
  76. - l_master_api_proxy.rc == 0
  77. - "'http_proxy' not in openshift.common"
  78. - "'https_proxy' not in openshift.common"
  79. lineinfile:
  80. dest: /etc/sysconfig/{{ openshift_service_type }}-master-api
  81. line: "{{ item }}"
  82. with_items: "{{ l_master_api_proxy.stdout_lines | default([]) }}"
  83. - name: Restore Master API AWS Options
  84. when:
  85. - master_api_aws.rc == 0
  86. - 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)
  87. lineinfile:
  88. dest: /etc/sysconfig/{{ openshift_service_type }}-master-api
  89. line: "{{ item }}"
  90. with_items: "{{ master_api_aws.stdout_lines | default([]) }}"
  91. no_log: True
  92. - name: Preserve Master Controllers Proxy Config options
  93. command: grep PROXY /etc/sysconfig/{{ openshift_service_type }}-master-controllers
  94. register: master_controllers_proxy
  95. failed_when: false
  96. changed_when: false
  97. - name: Preserve Master Controllers AWS options
  98. command: grep AWS_ /etc/sysconfig/{{ openshift_service_type }}-master-controllers
  99. register: master_controllers_aws
  100. failed_when: false
  101. changed_when: false
  102. - name: Create the master controllers service env file
  103. template:
  104. src: "{{ ha_svc_template_path }}/atomic-openshift-master-controllers.j2"
  105. dest: /etc/sysconfig/{{ openshift_service_type }}-master-controllers
  106. backup: true
  107. notify:
  108. - restart master controllers
  109. - name: Restore Master Controllers Proxy Config Options
  110. lineinfile:
  111. dest: /etc/sysconfig/{{ openshift_service_type }}-master-controllers
  112. line: "{{ item }}"
  113. with_items: "{{ master_controllers_proxy.stdout_lines | default([]) }}"
  114. when:
  115. - master_controllers_proxy.rc == 0
  116. - "'http_proxy' not in openshift.common"
  117. - "'https_proxy' not in openshift.common"
  118. - name: Restore Master Controllers AWS Options
  119. lineinfile:
  120. dest: /etc/sysconfig/{{ openshift_service_type }}-master-controllers
  121. line: "{{ item }}"
  122. with_items: "{{ master_controllers_aws.stdout_lines | default([]) }}"
  123. when:
  124. - master_controllers_aws.rc == 0
  125. - 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)