install.yml 591 B

1234567891011121314
  1. ---
  2. - name: Install node, clients, and conntrack packages
  3. package:
  4. name: "{{ item.name }}"
  5. state: present
  6. register: result
  7. until: result is succeeded
  8. with_items:
  9. - name: "{{ openshift_service_type }}-node{{ (openshift_pkg_version | default('')) | lib_utils_oo_image_tag_to_rpm_version(include_dash=True) }}"
  10. - name: "{{ openshift_service_type }}-clients{{ (openshift_pkg_version | default('')) | lib_utils_oo_image_tag_to_rpm_version(include_dash=True) }}"
  11. - name: "conntrack-tools"
  12. when:
  13. - not openshift_is_atomic | bool
  14. - item['install'] | default(True) | bool