systemd_units.yml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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