iscsi.yml 731 B

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. - name: Install iSCSI storage plugin dependencies
  3. package:
  4. name: "{{ item }}"
  5. state: present
  6. when: not openshift_is_atomic | bool
  7. register: result
  8. until: result is succeeded
  9. with_items:
  10. - iscsi-initiator-utils
  11. - device-mapper-multipath
  12. - name: restart services
  13. systemd:
  14. name: "{{ item }}"
  15. state: started
  16. enabled: True
  17. when: not openshift_is_atomic | bool
  18. with_items:
  19. - multipathd
  20. - rpcbind
  21. - name: Template multipath configuration
  22. template:
  23. dest: "/etc/multipath.conf"
  24. src: multipath.conf.j2
  25. backup: true
  26. when: not openshift_is_atomic | bool
  27. #enable multipath
  28. - name: Enable multipath
  29. command: "mpathconf --enable"
  30. when: not openshift_is_atomic | bool