systemd_units.yml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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: Create the master api service env file
  41. template:
  42. src: "{{ ha_svc_template_path }}/atomic-openshift-master-api.j2"
  43. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-api
  44. backup: true
  45. when: openshift.master.ha is defined and openshift.master.ha | bool and openshift_master_cluster_method == "native"
  46. notify:
  47. - restart master api
  48. - name: Restore Master API Proxy Config Options
  49. when: openshift.master.ha is defined and openshift.master.ha | bool and openshift_master_cluster_method == "native"
  50. and master_api_proxy.rc == 0 and 'http_proxy' not in openshift.common and 'https_proxy' not in openshift.common
  51. lineinfile:
  52. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-api
  53. line: "{{ item }}"
  54. with_items: "{{ master_api_proxy.stdout_lines | default([]) }}"
  55. - name: Preserve Master Controllers Proxy Config options
  56. command: grep PROXY /etc/sysconfig/{{ openshift.common.service_type }}-master-api
  57. register: master_controllers_proxy
  58. when: openshift.master.ha is defined and openshift.master.ha | bool and openshift_master_cluster_method == "native"
  59. failed_when: false
  60. changed_when: false
  61. - name: Create the master controllers service env file
  62. template:
  63. src: "{{ ha_svc_template_path }}/atomic-openshift-master-controllers.j2"
  64. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-controllers
  65. backup: true
  66. when: openshift.master.ha is defined and openshift.master.ha | bool and openshift_master_cluster_method == "native"
  67. notify:
  68. - restart master controllers
  69. - name: Restore Master Controllers Proxy Config Options
  70. lineinfile:
  71. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-controllers
  72. line: "{{ item }}"
  73. with_items: "{{ master_controllers_proxy.stdout_lines | default([]) }}"
  74. when: openshift.master.ha is defined and openshift.master.ha | bool and openshift_master_cluster_method == "native"
  75. and master_controllers_proxy.rc == 0 and 'http_proxy' not in openshift.common and 'https_proxy' not in openshift.common
  76. - name: Install Master docker service file
  77. template:
  78. dest: "/etc/systemd/system/{{ openshift.common.service_type }}-master.service"
  79. src: master_docker/master.docker.service.j2
  80. register: install_result
  81. when: openshift.common.is_containerized | bool and openshift.master.ha is defined and not openshift.master.ha | bool
  82. - name: Preserve Master Proxy Config options
  83. command: grep PROXY /etc/sysconfig/{{ openshift.common.service_type }}-master
  84. register: master_proxy
  85. failed_when: false
  86. changed_when: false
  87. - name: Create the master service env file
  88. template:
  89. src: "atomic-openshift-master.j2"
  90. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master
  91. backup: true
  92. notify:
  93. - restart master
  94. - name: Restore Master Proxy Config Options
  95. lineinfile:
  96. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master
  97. line: "{{ item }}"
  98. with_items: "{{ master_proxy.stdout_lines | default([]) }}"
  99. when: master_proxy.rc == 0 and 'http_proxy' not in openshift.common and 'https_proxy' not in openshift.common