Skip to main content

No project description provided

Project description

Introduction

wrapanapi is a simple virtualization client with support (in varying degrees) for the following

  • Red Hat Enterprize Virtualization (RHEV)

  • Red Hat Openstack (RHOS)

  • Red Hat Openshift

  • Openshift

  • VMware vCenter

  • Microsoft SCVMM

  • Microsoft Azure

  • Google Compute Engine

  • Hawkular

  • Amazon EC2

It can be used to control virtualization clients and offers operations such as

  • list_vm (returns a list of vm_names)

  • list_template (returns a list of templates/images)

  • start_vm (starts a vm)

  • stop_vm (stops a vm)

Though conceptually names differ between cloud and infrastructure virtualization technologies (e.g. instance/vm) it was decided to stick to one representation in the codebase and interface to give a singlar API across all systems.

Installation

Wrapanapi can be installed via pip as pip install wrapanapi It is always a good idea to use virtualenv to install pip packages.

For Linux Users, Depending on the distribution you are using, you may need to install following packages (or similar for your distribution of linux):

  • libcurl-devel

  • openssl-devel

  • libxml2-devel

  • libxml2-static

  • gcc

If you are in doubt if you really need these packages, you will hit errors during installation that will make it apparent for you to figure out that you need it. Pycurl is a one such package that requires you to install packages like ones listed above, you can read more about it at http://pycurl.io/docs/latest/install.html

Usage

Each management system is invoked usually with a hostname and some credentials

from wrapanapi.virtualcenter import VMWareSystem

system = VMWareSystem(hostname='10.0.0.0', username="root", password="password")
system.list_vm()

Adding a new Management System

A management system should extend the Base class, and supply “Not Implemented” raises for items which it doesn’t support. This behaviour may change in the future as more and more diverse management systems.

from base import WrapanapiAPIBase

class RHEVMSystem(WrapanapiAPIBase):

  _stats_available = {
    'num_vm': lambda self: self.api.get_summary().get_vms().total,
    'num_host': lambda self: len(self.list_host()),
    'num_cluster': lambda self: len(self.list_cluster()),
    'num_template': lambda self: len(self.list_template()),
    'num_datastore': lambda self: len(self.list_datastore()),
  }

  def __init__(self, hostname, username, password, **kwargs):
    super(RHEVMSystem, self).__init__(kwargs)

The call to super is necessary to set up the logger if noe has not been passed in with the logger keyword.

The developer can then add their own methods to interact with their own management system. Commonly accessible statistics are generally all named the same across management systems. In this way we can treat multiple management systems the same and use an identical method to check the number of vms on a RHEV system, to a VMware system.

Exceptions currently sit in a single module, this will probably change later with each management system having it’s own package and exceptions stored there.

This module was originally developed for assisting in the ManageIQ testing team.

Contributing

The guidelines to follow for this project can be found in the cfme dev_guide.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

wrapanapi-3.6.2.tar.gz (129.6 kB view details)

Uploaded Source

Built Distribution

wrapanapi-3.6.2-py3-none-any.whl (148.2 kB view details)

Uploaded Python 3

File details

Details for the file wrapanapi-3.6.2.tar.gz.

File metadata

  • Download URL: wrapanapi-3.6.2.tar.gz
  • Upload date:
  • Size: 129.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for wrapanapi-3.6.2.tar.gz
Algorithm Hash digest
SHA256 bc2ac4a22557b31f3ac760b712806b426c8d39785add9ebed996917fdbb2d55d
MD5 7cd92f5b44a9e43441e4d95dc05d7bb5
BLAKE2b-256 f6c1215ef8853e5ab0c5a113a0ff8733f53f35f78c60bc3b880c6ad7b4fea385

See more details on using hashes here.

File details

Details for the file wrapanapi-3.6.2-py3-none-any.whl.

File metadata

  • Download URL: wrapanapi-3.6.2-py3-none-any.whl
  • Upload date:
  • Size: 148.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for wrapanapi-3.6.2-py3-none-any.whl
Algorithm Hash digest
SHA256 bf2581ba627c23cc1f9e6e5b120eeabafb50be3a4fd67bcd5cf94b0e348fd1d8
MD5 6f8252a1fe0815b447b15a64cbac602e
BLAKE2b-256 7be863780ca63f582f8de89b6c458ead14e6e3a512b70eebf75e3381ccc2ed2e

See more details on using hashes here.

Supported by

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