Skip to main content

Qubell platform client library

Project description

====================
Python-qubell-client
====================

Repository contains:


qubell/api/private - library to access qubell via dev (non-stable) api.
qubell/api/public - library to access qubell via public (stable) api.

stories - tests in python unittests format. Primary goal is to test qubell platform functionality using different api's


Pre-requisites
==============

- python2.7 or greater
- requests
- yaml
- testtools
- nose

::

sudo pip install -r requirements.txt
or

::

sudo easy_install `cat requirements.txt`


Configuration
=============

To configure tests, set up environment variables:
QUBELL_USER, QUBELL_PASSWORD - user to access qubell
QUBELL_TENANT - url to qubell platform (https://express.qubell.com)
QUBELL_ORGANIZATION - name of organization to use. Will be created if not exists.

If you atend to create environment, you will also need:

PROVIDER_TYPE, PROVIDER_REGION, PROVIDER_IDENTITY, PROVIDER_CREDENTIAL - credentials for amazon ec2. (to create provider)
By default Amazon ec2 used (in us-east zone)

::

export QUBELL_TENANT="https://express.qubell.com"
export QUBELL_USER="user@gmail.com"
export QUBELL_PASSWORD="password"
export QUBELL_ORGANIZATION="my-org"

export PROVIDER_TYPE="aws-ec2"
export PROVIDER_REGION="us-east-1"
export PROVIDER_IDENTITY="FFFFFFFFF"
export PROVIDER_CREDENTIAL="FFFFFFFFFF"


Running tests
=============

First you need prepare environment (create provider, services, etc) It could be done via portal or by running script::

python restore_env.py

Run single test::

nosetests -s -v stories.instance.test_actions:BasicInstanceActionsTest.test_workflow_launch

Run all tests::

nosetests -s -v stories

or just::

nosetests


Using client
============


Creating environment
__________________
Package contains script to setup environment in qubell platform. To use it, set environment variables (see below) and run it::

python create_env.py


Building sandboxes
__________________
Sandboxes in qubell platform could be created on different levels. Maximum isolated sandbox could be achieved by separate organization (with it's own environments, users and application).


Organization
____________
Creating organization is simple::

from qubell.api.private.platform import QubellPlatform, Auth

auth = Auth(user="tester@qubell.com", password="password", tenant="https://api.qubell.com")
platform = QubellPlatform(auth=auth)
org = platform.organization(name="test-org")

After executing this code, organization "test-org" would be created (if not exists) or initialized (if exists)

try:
org = platform.get_organization(id="123")
except:
org = platform.create_organization(name="test-org")

Or you can create organization using this code.


Environment
___________

Usual environment consists of cloud account, keystore service and workflow service. So, we need to add theese services to our organization, then add them to our environment. By default we use "default" environment::

access = {
"provider": "aws-ec2",
"usedEnvironments": [],
"ec2SecurityGroup": "default",
"providerCopy": "aws-ec2",
"name": "test-provider",
"jcloudsIdentity": KEY,
"jcloudsCredential": SECRET_KEY,
"jcloudsRegions": "us-east-1"
}

def prepare_env(org):

# Add services to organization
key_service = org.service(type='builtin:cobalt_secure_store', name='Keystore')
wf_service = org.service(type='builtin:workflow_service', name='Workflow', parameters='{}')
prov = org.provider(access)

# Add services to environment
env = org.environment(name='default')
env.clean()
env.serviceAdd(key_service)
env.serviceAdd(wf_service)
env.providerAdd(prov)

# Here we regenerate keypair
env.policyAdd(
{"action": "provisionVms",
"parameter": "publicKeyId",
"value": key_service.regenerate()['id']})

return org.organizationId

prepare_env(org)


Now, platform ready to be used. We need only application with valid manifest.

Application
___________
We need manifest to create application::

manifest = Manifest(url="https://raw.github.com/qubell/contrib-python-qubell-client/master/qm/hierarchical-main.yml")

# Creating application
app = org.application(manifest=manifest, name='first_app')

or
try:
app = org.get_application(id="111")
except:
org.create_application(manifest=manifest, name='first_app')


Application would be crated.
To launch it, use code::

instance = app.launch()

# This way we wait instance to came up in 15 minutes or break.
assert instance.ready(15)

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

qubell-api-python-client-1.21.24.1.tar.gz (40.8 kB view details)

Uploaded Source

File details

Details for the file qubell-api-python-client-1.21.24.1.tar.gz.

File metadata

File hashes

Hashes for qubell-api-python-client-1.21.24.1.tar.gz
Algorithm Hash digest
SHA256 c5532ae14d8d0747c0ba3048318def8f0e90f55a82b6e6d991461a0373e27cb8
MD5 ad49123c1b8a201ff0e9443fd8776414
BLAKE2b-256 9cc9b19635eb313366f90779cca2f6ed7854c1ade9cb71ffd0cefb9a459e5460

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