mainly formatting changes

This commit is contained in:
Andy Edmonds
2012-07-04 10:43:24 +02:00
parent fbe7d2ca75
commit 9b90aa7b5b

View File

@@ -1,17 +1,19 @@
occi-os
=======
This is a clone of https://github.com/dizz/nova - it provides a python egg which can be deployed in OpenStack and will thereby add the 3rd party OCCI interface to OpenStack.
This is a clone and continuation of https://github.com/dizz/nova - it provides a python egg which can be easily
deployed in [OpenStack](http://www.openstack.org) and will thereby add the 3rd party [OCCI](http://www.occi-wg.org)
interface to OpenStack.
Usage
-----
1. Install this egg: python setup.py install (later maybe pip install occi-os)
2. Configure OpenStack - Add application to api-paste of nova and enable the API
1. Install this egg: `python setup.py install` (later maybe `pip install occi-os`)
2. Configure OpenStack - Add application to `api-paste.ini` of nova and enable the API
### Configuration
Make sure an application is configured in api-paste.ini (name can be picked yourself):
Make sure an application is configured in `api-paste.ini` (name can be picked yourself):
########
# OCCI #
@@ -29,7 +31,7 @@ Make sure an application is configured in api-paste.ini (name can be picked your
[app:occiapp]
use = egg:openstackocci#occi_app
Make sure the API (name from above) is enabled in nova.conf:
Make sure the API (name from above) is enabled in `nova.conf`:
[...]
enabled_apis=ec2,occiapi,osapi_compute,osapi_volume,metadata
@@ -42,4 +44,3 @@ You can set the port option via the `nova.conf` configuration file:
[...]
occiapi_listen_port=9999
[...]