iscsi.yml 744 B

12345678910111213141516171819202122232425262728293031323334
  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. - iscsid
  22. - name: Template multipath configuration
  23. template:
  24. dest: "/etc/multipath.conf"
  25. src: multipath.conf.j2
  26. backup: true
  27. when: not openshift_is_atomic | bool
  28. #enable multipath
  29. - name: Enable multipath
  30. command: "mpathconf --enable"
  31. when: not openshift_is_atomic | bool