Skip to main content

common utils for rhvh auto project

Project description

Common utils for RHVH automation project

Prerequisite

  • Python == "^3.7"

use poetry for dependency management and packaging

For dev

  • install dependencies
dnf install -y python3-devel libcurl-devel libxml-devel libxslt-devel
  • install poetry
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
  • then follow the Document for next setup

  • cd to $PROJECT root

$> poetry install && poetry shell

for detail usage, please see Document

use this package for other project

$> poetry add rhvhauto-common-utils

or

$> pip install rhvhauto-common-utils

common_utils/rhv

a simple ovirt-sdk4 wrapper

HE Dashboard
  • add host
  • migrate vm
Upgrade
  • add data-center
  • remove data-center
  • add cluster
  • remove cluster
  • add host
  • list host
  • deactivate host
  • remove host
  • check_update_available
  • upgrade_host
  • update_network
  • add_plain_storage_domain
  • remove_storage_domain
  • create_vm_from_tpl
  • list_vm(self, vm_name)
  • start_vm(self, vm_name)
  • operate_vm(self, vm_name, operation)
  • remove_vm(self, vm_name)
  • create_vm_image_disk(self, vm_name, sd_name, disk_name, disk_size
  • attach_disk_to_vm(self, disk_name, vm_name, bootable=False)
  • migrate_vm(self, vm_name)

Examples

Basic Usage
from rhvhauto_common_utils.rhv.base import BaseRhvAPI

if __name__ == '__main__':
    url = "https://FQDN/ovirt-engine/api"
    api = BaseRhvAPI(url)

    ret = api.add_data_center("atv_dc_01", local=False, wait=True)
    print(ret)

    ret = api.del_data_center("atv_dc_01")
    print(ret)

    ret = api.add_cluster(
        "atv_cl_01",
        data_center_name="atv_dc_01",
        cpu_type="Intel Skylake Server Family"
    )
    print(ret)

    ret = api.del_cluster("atv_cl_03")
    print(ret)

    ret = api.add_host(
        "atv_host_01",
        address="10.73.73.69",
        root_password="redhat",
        cluster_name="atv_cl_01",
        deploy_hosted_engine=False
    )
    print(ret)

    ret = api.deactivate_host("atv_host_01")
    print(ret)

    ret = api.activate_host('atv_host_01')
    print(ret)
    
    ret = api.add_iscsi_storage("name",
                                data_center_name="dc_name",
                                host_name="host_name",
                                lun_id="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
                                address="0.0.0.0",
                                target="iqn.xxxxxxx:xxxx.xxxxxx.xxxxx",
                                port=3260)
    print(ret)
    

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rhvhauto_common_utils-0.1.17-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file rhvhauto_common_utils-0.1.17-py3-none-any.whl.

File metadata

File hashes

Hashes for rhvhauto_common_utils-0.1.17-py3-none-any.whl
Algorithm Hash digest
SHA256 bb3e5d6027add8bcb3d51f9f4be3d3302c7c3d206c075244feb39f28c215d78e
MD5 14c65bc0cb9bef6191cc173437dfa403
BLAKE2b-256 6c3e95529b23fbc44a4955c89d1d627deb6bad6a96aabf4b97a2ea2d12f3bf25

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page