iscsi.yml 692 B

1234567891011121314151617181920212223242526272829303132
  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. with_items:
  18. - multipathd
  19. - rpcbind
  20. - name: Template multipath configuration
  21. template:
  22. dest: "/etc/multipath.conf"
  23. src: multipath.conf.j2
  24. backup: true
  25. when: not openshift_is_atomic | bool
  26. #enable multipath
  27. - name: Enable multipath
  28. command: "mpathconf --enable"
  29. when: not openshift_is_atomic | bool