Skip to content

Commit

Permalink
Fix missing ISCSI variables assignment. (OpenNebula#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
goberle authored and juanmont committed Feb 27, 2017
1 parent 8bf00bf commit 82d6860
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/vmm/LibVirtDriverKVM.cc
Original file line number Diff line number Diff line change
Expand Up @@ -447,6 +447,11 @@ int LibVirtDriver::deployment_description_kvm(
ceph_secret = disk[i]->vector_value("CEPH_SECRET");
ceph_user = disk[i]->vector_value("CEPH_USER");
pool_name = disk[i]->vector_value("POOL_NAME");

iscsi_host = disk[i]->vector_value("ISCSI_HOST");
iscsi_user = disk[i]->vector_value("ISCSI_USER");
iscsi_usage = disk[i]->vector_value("ISCSI_USAGE");
iscsi_iqn = disk[i]->vector_value("ISCSI_IQN");

gluster_host = disk[i]->vector_value("GLUSTER_HOST");
gluster_volume = disk[i]->vector_value("GLUSTER_VOLUME");
Expand Down

0 comments on commit 82d6860

Please sign in to comment.