systemd_units.yml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. ---
  2. # This file is included both in the openshift_master role and in the upgrade
  3. # playbooks.
  4. - name: Install Node dependencies docker service file
  5. template:
  6. dest: "/etc/systemd/system/{{ openshift.common.service_type }}-node-dep.service"
  7. src: openshift.docker.node.dep.service
  8. register: install_node_dep_result
  9. when: openshift.common.is_containerized | bool
  10. notify:
  11. - reload systemd units
  12. - restart node
  13. - block:
  14. - name: Pre-pull node image
  15. command: >
  16. docker pull {{ openshift.node.node_image }}:{{ openshift_image_tag }}
  17. register: pull_result
  18. changed_when: "'Downloaded newer image' in pull_result.stdout"
  19. - name: Install Node docker service file
  20. template:
  21. dest: "/etc/systemd/system/{{ openshift.common.service_type }}-node.service"
  22. src: openshift.docker.node.service
  23. register: install_node_result
  24. notify:
  25. - reload systemd units
  26. - restart node
  27. when:
  28. - openshift.common.is_containerized | bool
  29. - not openshift.common.is_node_system_container | bool
  30. - name: Install Node service file
  31. template:
  32. dest: "/etc/systemd/system/{{ openshift.common.service_type }}-node.service"
  33. src: "node.service.j2"
  34. register: install_node_result
  35. when: not openshift.common.is_containerized | bool
  36. notify:
  37. - reload systemd units
  38. - restart node
  39. - name: Create the openvswitch service env file
  40. template:
  41. src: openvswitch.sysconfig.j2
  42. dest: /etc/sysconfig/openvswitch
  43. when: openshift.common.is_containerized | bool
  44. register: install_ovs_sysconfig
  45. notify:
  46. - reload systemd units
  47. - restart openvswitch
  48. - name: Install Node system container
  49. include: node_system_container.yml
  50. when:
  51. - openshift.common.is_containerized | bool
  52. - openshift.common.is_node_system_container | bool
  53. - name: Install OpenvSwitch system containers
  54. include: openvswitch_system_container.yml
  55. when:
  56. - openshift.common.use_openshift_sdn | default(true) | bool
  57. - openshift.common.is_containerized | bool
  58. - openshift.common.is_openvswitch_system_container | bool
  59. # May be a temporary workaround.
  60. # https://bugzilla.redhat.com/show_bug.cgi?id=1331590
  61. - name: Create OpenvSwitch service.d directory
  62. file: path=/etc/systemd/system/openvswitch.service.d/ state=directory
  63. when: openshift.common.use_openshift_sdn | default(true) | bool
  64. - name: Install OpenvSwitch service OOM fix
  65. template:
  66. dest: "/etc/systemd/system/openvswitch.service.d/01-avoid-oom.conf"
  67. src: openvswitch-avoid-oom.conf
  68. when: openshift.common.use_openshift_sdn | default(true) | bool
  69. register: install_oom_fix_result
  70. notify:
  71. - reload systemd units
  72. - restart openvswitch
  73. - block:
  74. - name: Pre-pull openvswitch image
  75. command: >
  76. docker pull {{ openshift.node.ovs_image }}:{{ openshift_image_tag }}
  77. register: pull_result
  78. changed_when: "'Downloaded newer image' in pull_result.stdout"
  79. - name: Install OpenvSwitch docker service file
  80. template:
  81. dest: "/etc/systemd/system/openvswitch.service"
  82. src: openvswitch.docker.service
  83. notify:
  84. - reload systemd units
  85. - restart openvswitch
  86. when:
  87. - openshift.common.is_containerized | bool
  88. - openshift.common.use_openshift_sdn | default(true) | bool
  89. - not openshift.common.is_openvswitch_system_container | bool
  90. - name: Configure Node settings
  91. lineinfile:
  92. dest: /etc/sysconfig/{{ openshift.common.service_type }}-node
  93. regexp: "{{ item.regex }}"
  94. line: "{{ item.line }}"
  95. create: true
  96. with_items:
  97. - regex: '^OPTIONS='
  98. line: "OPTIONS=--loglevel={{ openshift.node.debug_level | default(2) }}"
  99. - regex: '^CONFIG_FILE='
  100. line: "CONFIG_FILE={{ openshift.common.config_base }}/node/node-config.yaml"
  101. - regex: '^IMAGE_VERSION='
  102. line: "IMAGE_VERSION={{ openshift_image_tag }}"
  103. notify:
  104. - restart node
  105. - name: Configure Proxy Settings
  106. lineinfile:
  107. dest: /etc/sysconfig/{{ openshift.common.service_type }}-node
  108. regexp: "{{ item.regex }}"
  109. line: "{{ item.line }}"
  110. create: true
  111. with_items:
  112. - regex: '^HTTP_PROXY='
  113. line: "HTTP_PROXY={{ openshift.common.http_proxy | default('') }}"
  114. - regex: '^HTTPS_PROXY='
  115. line: "HTTPS_PROXY={{ openshift.common.https_proxy | default('') }}"
  116. - regex: '^NO_PROXY='
  117. line: "NO_PROXY={{ openshift.common.no_proxy | default([]) }},{{ openshift.common.portal_net }},{{ hostvars[groups.oo_first_master.0].openshift.master.sdn_cluster_network_cidr }}"
  118. when: ('http_proxy' in openshift.common and openshift.common.http_proxy != '')
  119. notify:
  120. - restart node