iscsi.yml 802 B

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