Python Oracle VM Client
Project description
Author: Cloudbase Solutions
Contact: info@cloudbasesolutions.com
Home page: https://cloudbase.it
License: Apache 2.0
Usage
VM lifecycle
How to create, modify, start, stop and delete a VM:
import ovmclient
from ovmclient import constants
client = ovmclient.Client(
'https://host:7002/ovm/core/wsapi/rest', 'admin', 'yadayada')
# Make sure the manager is running
client.managers.wait_for_manager_state()
repo_id = client.repositories.get_id_by_name('repo1')
pool_id = client.server_pools.get_id_by_name('pool1')
network_id = client.networks.get_id_by_name('management')
# Create a virtual disk
disk_data = {
'diskType': constants.DISK_TYPE_VIRTUAL_DISK,
'size': 1024 * 1024 * 1024,
'shareable': False,
'name': 'dummy.img',
}
job = client.jobs.wait_for_job(
client.repository_virtual_disks(repo_id).create(disk_data, sparse='true'))
disk_id = job['resultId']
# Create a VM
vm_data = {
'name': 'vm1',
'description': 'Blah',
'vmDomainType': constants.VM_DOMAIN_TYPE_XEN_HVM_PV_DRIVERS,
'repositoryId': repo_id,
'serverPoolId': pool_id,
'cpuCount': 4,
'cpuCountLimit': 4,
'hugePagesEnabled': False,
'memory': 1024,
'memoryLimit': 1024,
'osType': 'Oracle Linux 7',
}
job = client.jobs.wait_for_job(client.vms.create(vm_data))
vm_id = job['resultId']
# Map the virtual disk
vm_disk_mapping_data = {
'virtualDiskId': disk_id,
'diskWriteMode': constants.DISK_WRITE_MODE_READ_WRITE,
'emulatedBlockDevice': False,
'storageElementId': None,
'diskTarget': 0,
}
job = client.jobs.wait_for_job(
client.vm_disk_mappings(vm_id).create(vm_disk_mapping_data))
# Add a vnic
vnic_data = {
'networkId': network_id,
}
client.jobs.wait_for_job(client.vm_virtual_nics(vm_id).create(vnic_data))
# Retrieve the VM
vm = client.vms.get_by_id(vm_id)
# Update the VM, e.g. setting a new name
vm['name'] = 'vm2'
client.jobs.wait_for_job(client.vms.update(vm_id, vm))
# Start the VM
client.jobs.wait_for_job(client.vms.start(vm_id))
# Kill the VM
client.jobs.wait_for_job(client.vms.kill(vm_id))
# Delete the VM
client.jobs.wait_for_job(client.vms.delete(vm_id))
# Delete the virtual disk
client.jobs.wait_for_job(
client.repository_virtual_disks(repo_id).delete(disk_id))
Cloning a VM
How to clone a VM or a VM template:
import ovmclient
client = ovmclient.Client(
'https://host:7002/ovm/core/wsapi/rest', 'admin', 'yadayada')
# Make sure the manager is running
client.managers.wait_for_manager_state()
pool_id = client.server_pools.get_id_by_name('pool1')
# Get an existing VM or a VM template
vm_id = client.vms.get_id_by_name('vm1')
# Set to True to create a VM template, False for a regular VM
create_template = True
# Clone the VM
job = client.jobs.wait_for_job(
client.vms.clone(vm_id, pool_id, create_template=create_template))
new_vm_id = job['resultId']
# Rename the VM template
data = client.vms.get_by_id(new_vm_id)
data["name"] = 'new_name'
client.jobs.wait_for_job(client.vms.update(new_vm_id, data))
# Delete the VM template
client.jobs.wait_for_job(client.vms.delete(new_vm_id))
Discovering servers
How to discover and take ownership of an unowned Oracle VM host:
import ovmclient
client = ovmclient.Client(
'https://host:7002/ovm/core/wsapi/rest', 'admin', 'yadayada')
# Make sure the manager is running
client.managers.wait_for_manager_state()
# Discover a new host and take ownership
client.servers.discover('newovmhost')
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file python-ovmclient-1.0.3.tar.gz.
File metadata
- Download URL: python-ovmclient-1.0.3.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
318bad55404afc9360e412b9dd9755be0b8799d3cac06cd36c11a2bcf927767c
|
|
| MD5 |
97dccd321a9bf268e1c5e49eb0ba6c21
|
|
| BLAKE2b-256 |
ddc992ccc89fa22c70562175c6bb7187905bfb6f3d48807b63f6ba410d0698d1
|