systemd_units.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. # input variables
  3. # - openshift.node.node_image
  4. # - openshift_image_tag
  5. # - openshift.common.is_containerized
  6. # - openshift.node.ovs_image
  7. # - openshift_use_openshift_sdn
  8. # - openshift.common.service_type
  9. # - openshift.node.debug_level
  10. # - openshift.common.config_base
  11. # - openshift.common.http_proxy
  12. # - openshift.common.portal_net
  13. # - openshift.common
  14. # - openshift.common.http_proxy
  15. # notify:
  16. # - restart openvswitch
  17. # - restart node
  18. # This file is included both in the openshift_master role and in the upgrade
  19. # playbooks.
  20. - include: config/install-node-deps-docker-service-file.yml
  21. when: openshift.common.is_containerized | bool
  22. - include: config/install-node-docker-service-file.yml
  23. when: openshift.common.is_containerized | bool
  24. - include: config/install-ovs-service-env-file.yml
  25. when: openshift.common.is_containerized | bool
  26. - include: config/workaround-bz1331590-ovs-oom-fix.yml
  27. when: openshift_use_openshift_sdn | bool
  28. - include: config/install-ovs-docker-service-file.yml
  29. when: openshift.common.is_containerized | bool and openshift_use_openshift_sdn | bool
  30. - include: config/configure-node-settings.yml
  31. - include: config/configure-proxy-settings.yml