cc1
v2.1
CC1 source code docs
|
Cluster configuration. More...
Variables | |
dictionary | disk_controllers |
Disk controllers for virtual machines. | |
tuple | disk_controllers_reversed = dict((v, k) for k, v in disk_controllers.iteritems()) |
dictionary | disk_filesystems |
tuple | disk_filesystems_reversed = dict((v, k) for k, v in disk_filesystems.iteritems()) |
dictionary | disk_format_commands |
list | live_attach_disk_controllers = ['virtio', 'usb'] |
dictionary | network_devices |
Network devices available for Virtual Machines. | |
tuple | network_devices_reversed = dict((v, k) for k, v in network_devices.iteritems()) |
dictionary | video_devices |
Emulated video devices for Virtual Machines. | |
tuple | video_devices_reversed = dict((v, k) for k, v in video_devices.iteritems()) |
Cluster configuration.
You can specify here what hardware will be emulated on this cluster and all supported disk types/formats. Some variables have python-dictionary format. Each element is sub-dictionary:
Usually required parameters are name and enabled. If any attitional are re- quired, it is written in comment.
dictionary src.common.hardware.disk_controllers |
Disk controllers for virtual machines.
Definition at line 56 of file hardware.py.
tuple src.common.hardware.disk_controllers_reversed = dict((v, k) for k, v in disk_controllers.iteritems()) |
Definition at line 96 of file hardware.py.
dictionary src.common.hardware.disk_filesystems |
Definition at line 71 of file hardware.py.
tuple src.common.hardware.disk_filesystems_reversed = dict((v, k) for k, v in disk_filesystems.iteritems()) |
Definition at line 98 of file hardware.py.
dictionary src.common.hardware.disk_format_commands |
Definition at line 83 of file hardware.py.
list src.common.hardware.live_attach_disk_controllers = ['virtio', 'usb'] |
Definition at line 64 of file hardware.py.
dictionary src.common.hardware.network_devices |
Network devices available for Virtual Machines.
Add own if necessary (virtualizator has to support it!)
Definition at line 41 of file hardware.py.
tuple src.common.hardware.network_devices_reversed = dict((v, k) for k, v in network_devices.iteritems()) |
Definition at line 97 of file hardware.py.
dictionary src.common.hardware.video_devices |
Emulated video devices for Virtual Machines.
Add own if necessary (virtualizator has to support it!)
Definition at line 50 of file hardware.py.
tuple src.common.hardware.video_devices_reversed = dict((v, k) for k, v in video_devices.iteritems()) |
Definition at line 95 of file hardware.py.