systemd_units.yml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. - name: Install OpenvSwitch docker service file
  24. template:
  25. dest: "/etc/systemd/system/openvswitch.service"
  26. src: openvswitch.docker.service
  27. when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | bool
  28. notify:
  29. - restart openvswitch
  30. - name: Configure Node settings
  31. lineinfile:
  32. dest: /etc/sysconfig/{{ openshift.common.service_type }}-node
  33. regexp: "{{ item.regex }}"
  34. line: "{{ item.line }}"
  35. create: true
  36. with_items:
  37. - regex: '^OPTIONS='
  38. line: "OPTIONS=--loglevel={{ openshift.node.debug_level }}"
  39. - regex: '^CONFIG_FILE='
  40. line: "CONFIG_FILE={{ openshift_node_config_file }}"
  41. - regex: '^IMAGE_VERSION='
  42. line: "IMAGE_VERSION={{ openshift_image_tag }}"
  43. notify:
  44. - restart node
  45. - name: Configure Proxy Settings
  46. lineinfile:
  47. dest: /etc/sysconfig/{{ openshift.common.service_type }}-node
  48. regexp: "{{ item.regex }}"
  49. line: "{{ item.line }}"
  50. create: true
  51. with_items:
  52. - regex: '^HTTP_PROXY='
  53. line: "HTTP_PROXY={{ openshift.common.http_proxy | default('') }}"
  54. - regex: '^HTTPS_PROXY='
  55. line: "HTTPS_PROXY={{ openshift.common.https_proxy | default('') }}"
  56. - regex: '^NO_PROXY='
  57. 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 }}"
  58. when: ('http_proxy' in openshift.common and openshift.common.http_proxy != '')
  59. notify:
  60. - restart node
  61. - name: Reload systemd units
  62. command: systemctl daemon-reload
  63. when: openshift.common.is_containerized | bool and (install_node_result | changed or install_ovs_sysconfig | changed or install_node_dep_result | changed)
  64. notify:
  65. - restart node