Unified SDK for OpenStack
Go to file
Monty Taylor 688fc5a609
Remove ansible functional tests for now
These aren't actually testing openstacksdk in any way at the moment,
and having them is making us have a test-requirements depend on shade
which will make adding openstacksdk as a shade requirement a circular
dependency.

Remove them for now. To re-add them, we want to:

- add openstacksdk as a shade requirement
- update ansible to import openstack instead of import shade

Once that's done, we can add the tests back, but without adding shade as
an sdk test-requirement. That way we can have shade test that the
ansible modules work if someone installs shade and doesn't explicitly
install sdk, and we can have sdk test that the modules work if someone
installs sdk and not shade.

Change-Id: Icb26f9c066bad6c2c045ac949ac1864e26b5b837
2017-11-16 16:12:40 -06:00
devstack Merge tox, tests and other support files 2017-10-04 14:51:08 -05:00
doc Move task_manager and adapter up a level from cloud 2017-11-15 11:56:28 -06:00
examples Rework config and rest layers 2017-11-15 11:46:50 -06:00
extras Merge tox, tests and other support files 2017-10-04 14:51:08 -05:00
openstack Merge "Avoid default mutable values in arguments" 2017-11-16 15:14:30 +00:00
playbooks/devstack Add jobs for Zuul v3 2017-11-15 09:03:59 -06:00
releasenotes Rework config and rest layers 2017-11-15 11:46:50 -06:00
tools Merge shade and os-client-config into the tree 2017-11-15 09:03:23 -06:00
.coveragerc Fix coverage configuration and execution 2016-03-14 07:34:53 +00:00
.gitignore Merge tox, tests and other support files 2017-10-04 14:51:08 -05:00
.gitreview Update .gitreview for new namespace 2015-10-17 22:37:27 +00:00
.mailmap Merge tox, tests and other support files 2017-10-04 14:51:08 -05:00
.stestr.conf Merge shade and os-client-config into the tree 2017-11-15 09:03:23 -06:00
.zuul.yaml Remove ansible functional tests for now 2017-11-16 16:12:40 -06:00
CONTRIBUTING.rst Merge shade and os-client-config into the tree 2017-11-15 09:03:23 -06:00
HACKING.rst Merge shade and os-client-config into the tree 2017-11-15 09:03:23 -06:00
LICENSE setting up the initial layout; move the api proposals to api_strawman 2014-01-24 22:58:25 -06:00
MANIFEST.in setting up the initial layout; move the api proposals to api_strawman 2014-01-24 22:58:25 -06:00
README.rst Merge shade and os-client-config into the tree 2017-11-15 09:03:23 -06:00
SHADE-MERGE-TODO.rst Add notes about moving forward 2017-11-15 11:56:28 -06:00
babel.cfg setting up the initial layout; move the api proposals to api_strawman 2014-01-24 22:58:25 -06:00
bindep.txt Merge tox, tests and other support files 2017-10-04 14:51:08 -05:00
create_yaml.sh Fix the network quota tests 2017-02-19 09:46:52 -07:00
docs-requirements.txt Add requirements.txt file for readthedocs 2015-05-21 08:16:44 -07:00
post_test_hook.sh Update load_balancer for v2 API 2017-07-18 18:05:29 -07:00
requirements.txt Updated from global requirements 2017-11-16 11:26:05 +00:00
setup.cfg Merge tox, tests and other support files 2017-10-04 14:51:08 -05:00
setup.py Updated from global requirements 2017-03-02 11:55:11 +00:00
test-requirements.txt Remove ansible functional tests for now 2017-11-16 16:12:40 -06:00
tox.ini Merge shade and os-client-config into the tree 2017-11-15 09:03:23 -06:00

README.rst

openstacksdk

openstacksdk is a client library for for building applications to work with OpenStack clouds. The project aims to provide a consistent and complete set of interactions with OpenStack's many services, along with complete documentation, examples, and tools.

It also contains a simple interface layer. Clouds can do many things, but there are probably only about 10 of them that most people care about with any regularity. If you want to do complicated things, the per-service oriented portions of the SDK are for you. However, if what you want is to be able to write an application that talks to clouds no matter what crazy choices the deployer has made in an attempt to be more hipster than their self-entitled narcissist peers, then the openstack.cloud layer is for you.

A Brief History

openstacksdk started its life as three different libraries: shade, os-client-config and python-openstacksdk.

shade started its life as some code inside of OpenStack Infra's nodepool project, and as some code inside of Ansible. Ansible had a bunch of different OpenStack related modules, and there was a ton of duplicated code. Eventually, between refactoring that duplication into an internal library, and adding logic and features that the OpenStack Infra team had developed to run client applications at scale, it turned out that we'd written nine-tenths of what we'd need to have a standalone library.

os-client-config was a library for collecting client configuration for using an OpenStack cloud in a consistent and comprehensive manner. In parallel, the python-openstacksdk team was working on a library to expose the OpenStack APIs to developers in a consistent and predictable manner. After a while it became clear that there was value in both a high-level layer that contains business logic, a lower-level SDK that exposes services and their resources as Python objects, and also to be able to make direct REST calls when needed with a properly configured Session or Adapter from python-requests. This led to the merger of the three projects.

The contents of the shade library have been moved into openstack.cloud and os-client-config has been moved in to openstack.config. The next release of shade will be a thin compatibility layer that subclasses the objects from openstack.cloud and provides different argument defaults where needed for compat. Similarly the next release of os-client-config will be a compat layer shim around openstack.config.

openstack.config

openstack.config will find cloud configuration for as few as 1 clouds and as many as you want to put in a config file. It will read environment variables and config files, and it also contains some vendor specific default values so that you don't have to know extra info to use OpenStack

  • If you have a config file, you will get the clouds listed in it
  • If you have environment variables, you will get a cloud named envvars
  • If you have neither, you will get a cloud named defaults with base defaults

Sometimes an example is nice.

Create a clouds.yaml file:

clouds:
 mordred:
   region_name: Dallas
   auth:
     username: 'mordred'
     password: XXXXXXX
     project_name: 'shade'
     auth_url: 'https://identity.example.com'

Please note: openstack.config will look for a file called clouds.yaml in the following locations:

  • Current Directory
  • ~/.config/openstack
  • /etc/openstack

More information at https://developer.openstack.org/sdks/python/openstacksdk/users/config

openstack.cloud

Create a server using objects configured with the clouds.yaml file:

import openstack.cloud

# Initialize and turn on debug logging
openstack.cloud.simple_logging(debug=True)

# Initialize cloud
# Cloud configs are read with openstack.config
cloud = openstack.openstack_cloud(cloud='mordred')

# Upload an image to the cloud
image = cloud.create_image(
    'ubuntu-trusty', filename='ubuntu-trusty.qcow2', wait=True)

# Find a flavor with at least 512M of RAM
flavor = cloud.get_flavor_by_ram(512)

# Boot a server, wait for it to boot, and then do whatever is needed
# to get a public ip for it.
cloud.create_server(
    'my-server', image=image, flavor=flavor, wait=True, auto_ip=True)

Links