install.yml 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. # We have to add tuned-profiles in the same transaction otherwise we run into depsolving
  3. # problems because the rpms don't pin the version properly. This was fixed in 3.1 packaging.
  4. - when: not openshift.common.is_containerized | bool
  5. block:
  6. - name: Install Node package
  7. package:
  8. name: "{{ openshift.common.service_type }}-node{{ openshift_pkg_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }},tuned-profiles-{{ openshift.common.service_type }}-node{{ openshift_pkg_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }}"
  9. state: present
  10. - name: Install sdn-ovs package
  11. package:
  12. name: "{{ openshift.common.service_type }}-sdn-ovs{{ openshift_pkg_version | oo_image_tag_to_rpm_version(include_dash=True) }}"
  13. state: present
  14. when:
  15. - openshift_node_use_openshift_sdn | bool
  16. - name: Install conntrack-tools package
  17. package:
  18. name: "conntrack-tools"
  19. state: present
  20. - when:
  21. - openshift.common.is_containerized | bool
  22. - not openshift.common.is_node_system_container | bool
  23. block:
  24. - name: Pre-pull node image when containerized
  25. command: >
  26. docker pull {{ openshift.node.node_image }}:{{ openshift_image_tag }}
  27. register: pull_result
  28. changed_when: "'Downloaded newer image' in pull_result.stdout"
  29. - include: config/install-node-docker-service-file.yml