systemd_units.yml 3.8 KB

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