Reservation Service for OpenStack
Go to file
Jay Lau 822e568921 Adjust import order according to PEP8 imports rule
This patch just adjust import order to follow PEP8 imports rule.
See http://www.python.org/dev/peps/pep-0008/#imports

Imports should be grouped in the following order:
1) Standard library imports
2) Related third party imports
3) Local application/library specific imports

Change-Id: Ifb56bbe6ba1ed7682c3326d6429fb34d268e7ea4
2014-04-25 20:12:25 +08:00
climate Adjust import order according to PEP8 imports rule 2014-04-25 20:12:25 +08:00
contrib Added V2 API auth configuration to devstack 2014-04-21 17:56:06 -03:00
doc/source Change references of tenant to project 2014-04-17 11:16:09 -03:00
etc Sends notifications at lease events 2014-04-21 12:11:13 -03:00
tools/config Reworking configuration options 2014-02-24 18:04:22 +01:00
.gitignore Add Cover directory to gitignore 2013-11-28 15:24:43 +01:00
.gitreview Add gitreview file 2013-04-26 14:44:36 +02:00
.testr.conf Fix testing env variables and testing directory 2014-01-28 14:32:51 +04:00
babel.cfg Implement primary support for i18n messages shown to user 2013-12-05 18:38:03 +04:00
HACKING.rst Add HACKING.rst with link to the style guidelines 2013-11-15 14:27:36 +04:00
LICENSE Add LICENSE and MANIFEST.in files 2014-02-04 23:02:01 +04:00
MANIFEST.in Add LICENSE and MANIFEST.in files 2014-02-04 23:02:01 +04:00
openstack-common.conf Reworking configuration options 2014-02-24 18:04:22 +01:00
pylintrc Add pylint check for Climate project 2014-02-17 15:03:21 +04:00
README.rst Add notes about Keystone v3 endpoint to README.rst 2014-01-24 14:26:53 +04:00
requirements.txt Updated from global requirements 2014-04-11 04:18:26 +00:00
setup.cfg Support for DB migrations using Alembic 2014-03-25 11:11:22 -03:00
setup.py Fix packages versions to match global requirements. 2013-10-09 22:11:14 +04:00
test-requirements.txt Port to Pecan/WSME for API v2 2014-03-31 13:45:48 +02:00
tox.ini Update openstack.common with latest oslo-incubator 2014-03-06 16:30:42 -03:00

Climate

Overview

OpenStack Reservation Service

Prerequisites

  • Keystone v3 API endpoint
  • Dedicated account for write operations on behalf of the admin

    climate_username

  • Service account

Configuration

Create identityv3 endpoint

For adding new endpoint for Keystone V3, use the following instructions: 1) keystone service-create --name keystonev3 --type identytiv3 --description "Keystone Identity Service v3" 2) keystone endpoint-create --region <region> --service keystonev3 --publicurl "<auth_protocol>://<auth_host>:5000/v3" --adminurl "<auth_protocol>://<auth_host>:35357/v3" --internalurl "<auth_protocol>://<auth_host>:5000/v3"