Coder Social home page Coder Social logo

wrapanapi's Introduction

Health Status

Coverage Status Build Status

wrapanapi

Introduction

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

  • Red Hat Enterprize Virtualization (RHEV)
  • Red Hat Openstack (RHOS)
  • Openshift
  • VMware vCenter
  • Microsoft SCVMM
  • Microsoft Azure
  • Google Compute Engine
  • Kubernetes
  • 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.

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.

wrapanapi's People

Contributors

psav avatar jteehan avatar mshriver avatar jkandasa avatar hhovsepy avatar amavinag avatar gshefer avatar izapolsk avatar dajohnso avatar jkrocil avatar oleksandr-kolisnyk avatar rsnyman avatar jdemon519 avatar lehinevych avatar andreymenezes avatar dajorh avatar grafuls avatar chessbyte avatar ronnypfannschmidt avatar sshveta avatar vrutkovs avatar kzvyahin avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.