Hi there:
I have an experiment profile that relies on multiple hosts, and to reduce the number of physical hosts I have been running these in virtual machines. These XenVMs are running on the same physical PC.
I am trying to specify the hardware type in my geni-lib script. However, if I were to write
node_0 = request.XenVM('node-0')
node_0.hardware_type = 'c6620'
node_1 = request.XenVM('node-1')
node_1.hardware_type = 'c6620'
Both of these nodes would be created on the desired hardware type, but on different physical PCs. Is there a way to group these two nodes so that the VMs are created on the same physical PC of a given type? If it is relevant, all nodes are connected by a Link.
Thanks
Sam