Advertisement
snadge

openstack v7000 cinder.conf yml

Feb 27th, 2020
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. {% if 'v7000iscsi' in cinder_backend %}
  2. [v7000iscsi]
  3. volume_driver = cinder.volume.drivers.ibm.storwize_svc.storwize_svc_iscsi.StorwizeSVCISCSIDriver
  4. san_ip = {{ v7000_iscsi.ip }}
  5. san_login = {{ v7000_iscsi.user }}
  6. san_private_key = {{ v7000_iscsi.keypath }}/{{ v7000_iscsi.key }}
  7. storwize_svc_volpool_name = {{ v7000_iscsi.pools }}
  8. storwize_svc_vol_iogrp = {{ v7000_iscsi.iogrp }}
  9. {% endif %}
  10.  
  11. {% if 'v7000fc' in cinder_backend %}
  12. [v7000fc]
  13. volume_driver = cinder.volume.drivers.ibm.storwize_svc.storwize_svc_fc.StorwizeSVCFCDriver
  14. san_ip = {{ v7000_FC.ip }}
  15. san_login = {{ v7000_FC.user }}
  16. san_private_key = {{ v7000_FC.keypath }}/{{ v7000_FC.key }}
  17. storwize_svc_volpool_name = {{ v7000_FC.pools }}
  18. storwize_svc_multipath_enabled = True
  19. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement