systemd_units.yml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. # This file is included both in the openshift_master role and in the upgrade
  2. # playbooks.
  3. - name: Install Node dependencies docker service file
  4. template:
  5. dest: "/etc/systemd/system/{{ openshift.common.service_type }}-node-dep.service"
  6. src: openshift.docker.node.dep.service
  7. register: install_node_dep_result
  8. when: openshift.common.is_containerized | bool
  9. - name: Install Node docker service file
  10. template:
  11. dest: "/etc/systemd/system/{{ openshift.common.service_type }}-node.service"
  12. src: openshift.docker.node.service
  13. register: install_node_result
  14. when: openshift.common.is_containerized | bool
  15. - name: Create the openvswitch service env file
  16. template:
  17. src: openvswitch.sysconfig.j2
  18. dest: /etc/sysconfig/openvswitch
  19. when: openshift.common.is_containerized | bool
  20. register: install_ovs_sysconfig
  21. notify:
  22. - restart openvswitch
  23. # May be a temporary workaround.
  24. # https://bugzilla.redhat.com/show_bug.cgi?id=1331590
  25. - name: Create OpenvSwitch service.d directory
  26. file: path=/etc/systemd/system/openvswitch.service.d/ state=directory
  27. when: openshift.common.use_openshift_sdn | default(true) | bool
  28. - name: Install OpenvSwitch service OOM fix
  29. template:
  30. dest: "/etc/systemd/system/openvswitch.service.d/01-avoid-oom.conf"
  31. src: openvswitch-avoid-oom.conf
  32. when: openshift.common.use_openshift_sdn | default(true) | bool
  33. register: install_oom_fix_result
  34. notify:
  35. - restart openvswitch
  36. - name: Install OpenvSwitch docker service file
  37. template:
  38. dest: "/etc/systemd/system/openvswitch.service"
  39. src: openvswitch.docker.service
  40. when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | default(true) | bool
  41. notify:
  42. - restart openvswitch
  43. - name: Configure Node settings
  44. lineinfile:
  45. dest: /etc/sysconfig/{{ openshift.common.service_type }}-node
  46. regexp: "{{ item.regex }}"
  47. line: "{{ item.line }}"
  48. create: true
  49. with_items:
  50. - regex: '^OPTIONS='
  51. line: "OPTIONS=--loglevel={{ openshift.node.debug_level | default(2) }}"
  52. - regex: '^CONFIG_FILE='
  53. line: "CONFIG_FILE={{ openshift.common.config_base }}/node/node-config.yaml"
  54. - regex: '^IMAGE_VERSION='
  55. line: "IMAGE_VERSION={{ openshift_image_tag }}"
  56. notify:
  57. - restart node
  58. - name: Configure Proxy Settings
  59. lineinfile:
  60. dest: /etc/sysconfig/{{ openshift.common.service_type }}-node
  61. regexp: "{{ item.regex }}"
  62. line: "{{ item.line }}"
  63. create: true
  64. with_items:
  65. - regex: '^HTTP_PROXY='
  66. line: "HTTP_PROXY={{ openshift.common.http_proxy | default('') }}"
  67. - regex: '^HTTPS_PROXY='
  68. line: "HTTPS_PROXY={{ openshift.common.https_proxy | default('') }}"
  69. - regex: '^NO_PROXY='
  70. line: "NO_PROXY={{ openshift.common.no_proxy | default([]) | join(',') }},{{ openshift.common.portal_net }},{{ hostvars[groups.oo_first_master.0].openshift.master.sdn_cluster_network_cidr }}"
  71. when: ('http_proxy' in openshift.common and openshift.common.http_proxy != '')
  72. notify:
  73. - restart node
  74. - name: Reload systemd units
  75. command: systemctl daemon-reload
  76. when: (openshift.common.is_containerized | bool and (install_node_result | changed or install_ovs_sysconfig | changed or install_node_dep_result | changed)) or install_oom_fix_result | changed
  77. notify:
  78. - restart node