Client library for Cyborg API
Go to file
zhangbailin 749a47424d Bump oslo.log>=5.0.0 version
In zed cycle, OpenStack projects and oslo lib
has dropped the py3.6 and py3.7 support

- https://governance.openstack.org/tc/reference/runtimes/zed.html

With oslo not supporting the py3.6 and py3.7, we disscussed in cyborg
team, and we will remove the py3.6 and py3.7 support too, and we should
bump oslo.log>=5.0.0 to support.

Change-Id: Ie297062d3e274ff7d34af11bdc78cc7db67eb26d
2022-06-09 06:34:13 +00:00
cyborgclient Merge "Add support project-id for arq patch releasenote" 2021-12-21 05:41:09 +00:00
doc Merge "[ussuri][goal] Update contributor documentation" 2021-07-08 06:34:56 +00:00
releasenotes Update master for stable/yoga 2022-03-03 10:51:02 +00:00
.coveragerc Initialize cyborgclient repository 2018-04-12 16:09:57 +00:00
.gitignore Initialize cyborgclient repository 2018-04-12 16:09:57 +00:00
.gitreview OpenDev Migration Patch 2019-04-19 19:42:10 +00:00
.mailmap Initialize cyborgclient repository 2018-04-12 16:09:57 +00:00
.stestr.conf Initialize cyborgclient repository 2018-04-12 16:09:57 +00:00
.zuul.yaml Remove py36 zuul task 2022-06-08 09:01:41 +08:00
CONTRIBUTING.rst [ussuri][goal] Update contributor documentation 2021-05-31 20:29:47 +00:00
HACKING.rst Initialize cyborgclient repository 2018-04-12 16:09:57 +00:00
LICENSE Initialize cyborgclient repository 2018-04-12 16:09:57 +00:00
README.rst update error url 2021-03-12 04:16:19 +00:00
requirements.txt Bump oslo.log>=5.0.0 version 2022-06-09 06:34:13 +00:00
setup.cfg Updating python testing classifier as per Yoga testing runtime 2021-12-14 02:38:00 +00:00
setup.py Cleanup py27 support 2020-04-05 07:24:28 +02:00
test-requirements.txt Add doc/requirements 2021-03-17 03:02:00 +00:00
tox.ini Updating python testing classifier as per Yoga testing runtime 2021-12-14 02:38:00 +00:00

README.rst

Team and repository tags

image

python-cyborgclient

Latest Version

python-cyborgclient is a python bindings to the OpenStack Cyborg API. There's a Python API (the cyborgclient module), and a command-line script (cyborg). Each implements 100% of the OpenStack Cyborg API.

See the OpenStack CLI Reference for information on how to use the cyborg command-line tool. You may also want to look at the OpenStack API documentation.

The project is hosted on Launchpad, where bugs can be filed. The code is hosted on OpenStack. Patches must be submitted using Gerrit.

This code is a fork of Jacobian's python-cloudservers. If you need API support for the Rackspace API solely or the BSD license, you should use that repository. python-cyborgclient is licensed under the Apache License like the rest of OpenStack.

Contents:

Command-line API

Installing this package gets you a shell command, cyborg, that you can use to interact with any Rackspace compatible API (including OpenStack).

You'll need to provide your OpenStack username and password. You can do this with the --os-username, --os-password and --os-tenant-name params, but it's easier to just set them as environment variables:

export OS_USERNAME=openstack
export OS_PASSWORD=yadayada
export OS_TENANT_NAME=myproject

You will also need to define the authentication url with --os-auth-url and the version of the API with --os-accelerator-api-version. Or set them as environment variables as well, OS_ACCELERATOR_API_VERSION=1. If you are using Keystone, you need to set the OS_AUTH_URL to the keystone endpoint:

export OS_AUTH_URL=http://controller:5000/v3
export OS_ACCELERATOR_API_VERSION=1

Since Keystone can return multiple regions in the Service Catalog, you can specify the one you want with --os-region-name (or export OS_REGION_NAME). It defaults to the first in the list returned.

You'll find complete documentation on the shell by running cyborg help

Python API

There's also a complete Python API, but it has not yet been documented.

Quick-start using keystone:

# pass auth plugin and session to Client init.
# service_parameters contains servive_name, service_type, interface and
# region name.
>>> from cyborgclient.v1 import client
>>> nt = client.Client(auth=auth,session=_SESSION,**service_parameters)
>>> nt.accelerators.list()
[...]

See release notes and more at https://docs.openstack.org/python-cyborgclient/latest/.