Reservation Service for OpenStack
Go to file
loooosy a8542f11fe Replace six.iteritems() with .items()
1.As mentioned in [1], we should avoid using
six.iteritems to achieve iterators. We can
use dict.items instead, as it will return
iterators in PY3 as well. And dict.items/keys
will more readable. 2.In py2, the performance
about list should be negligible, see the link [2].
[1] https://wiki.openstack.org/wiki/Python3
[2] http://lists.openstack.org/pipermail/openstack-dev/2015-June/066391.html

Change-Id: I1ca4470fe8aae2098899b3f7ed29f83b56d57f79
2017-04-05 19:51:51 +08:00
blazar Replace six.iteritems() with .items() 2017-04-05 19:51:51 +08:00
contrib/tempest Copy Tempest scenario base classes into blazar tree 2017-03-15 11:18:16 +09:00
devstack Change filter name in DevStack plugin 2017-03-06 01:26:21 +00:00
doc/source Add specifications directory 2017-03-10 18:00:02 +00:00
etc Migrate climate namespace to blazar 2017-03-02 09:36:14 +00:00
releasenotes Merge "Add release note of deprecation of ClimateFilter" 2017-03-08 01:56:22 +00:00
tools Merge "Prepare for using standard python tests" 2017-02-09 08:42:00 +00:00
.gitignore Add Cover directory to gitignore 2013-11-28 15:24:43 +01:00
.gitreview Update .gitreview for new namespace 2015-10-17 21:54:38 +00:00
.testr.conf Fix testing env variables and testing directory 2014-01-28 14:32:51 +04:00
HACKING.rst Renamed Climate references to Blazar in the docs 2014-06-27 14:34:31 -07:00
LICENSE Add LICENSE and MANIFEST.in files 2014-02-04 23:02:01 +04:00
MANIFEST.in Migrate climate namespace to blazar 2017-03-02 09:36:14 +00:00
README.rst Migrate climate namespace to blazar 2017-03-02 09:36:14 +00:00
babel.cfg Implement primary support for i18n messages shown to user 2013-12-05 18:38:03 +04:00
pylintrc Add pylint check for Climate project 2014-02-17 15:03:21 +04:00
requirements.txt Updated from global requirements 2017-04-01 15:22:10 +00:00
setup.cfg Migrate climate namespace to blazar 2017-03-02 09:36:14 +00:00
setup.py Updated from global requirements 2017-03-21 06:35:39 -05:00
test-requirements.txt Remove discover and lockfile from test-requirements 2017-03-21 06:35:39 -05:00
tox.ini Migrate climate namespace to blazar 2017-03-02 09:36:14 +00:00

README.rst

Blazar

Overview

OpenStack Reservation Service

Prerequisites

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

    blazar_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"