base_packages.yml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. - name: Ensure that all non-node hosts are accessible
  3. hosts: oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config:oo_nfs_to_config
  4. any_errors_fatal: true
  5. tasks:
  6. - when:
  7. - not openshift_is_atomic | bool
  8. block:
  9. - name: Ensure openshift-ansible installer package deps are installed
  10. package:
  11. name: "{{ item }}"
  12. state: present
  13. with_items:
  14. - iproute
  15. - "{{ 'python3-dbus' if ansible_distribution == 'Fedora' else 'dbus-python' }}"
  16. - "{{ 'python3-PyYAML' if ansible_distribution == 'Fedora' else 'PyYAML' }}"
  17. - yum-utils
  18. register: result
  19. until: result is succeeded
  20. - name: Ensure various deps for running system containers are installed
  21. package:
  22. name: "{{ item }}"
  23. state: present
  24. with_items:
  25. - atomic
  26. - ostree
  27. - runc
  28. when:
  29. - >
  30. (openshift_use_system_containers | default(False)) | bool
  31. or (openshift_use_etcd_system_container | default(False)) | bool
  32. or (openshift_use_openvswitch_system_container | default(False)) | bool
  33. or (openshift_use_node_system_container | default(False)) | bool
  34. or (openshift_use_master_system_container | default(False)) | bool
  35. register: result
  36. until: result is succeeded