summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python
Commit message (Collapse)AuthorAgeFilesLines
...
* python-cinder: Add cinder-scheduler packageMihai Prica2013-08-281-2/+9
| | | | | | | This package contains the cinder-scheduler executable and an initscript that starts the cinder-scheduler at boot time. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-cinder: Update cinder-volume initscript and postinstallMihai Prica2013-08-282-2/+84
| | | | | | | | | Cinder-volume requires the cinder-volumes volume group created. The backing file for this volume is created in the postinstall with a size of 2G on the first boot and the volume group is created at boot time in the cinder-volume initscript. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-cinder: Fix path errorMihai Prica2013-08-281-1/+1
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-quantum: Add postinstall for quantum-plugin-openvswitchMihai Prica2013-08-281-0/+8
| | | | | | | | For the openvswitch plugin to work the br-int bridge has to be created. To create the bridge the ovsdb-server is started using the openvswitch-switch initscript. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-quantum: Changed DB name to ovs_quantumMihai Prica2013-08-282-2/+3
| | | | | | ovs_quantum is the default name for the quantum DB. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-nova: Add quantum settingsMihai Prica2013-08-281-0/+9
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-horizon: Add runtime dependency on nodejsMihai Prica2013-08-281-1/+2
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-horizon: Changed DEBUG to TrueMihai Prica2013-08-281-3/+1
| | | | | | | If DEBUG is set to False the static files are not loaded correctly. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-horizon: Fix bindir search pathMihai Prica2013-08-282-0/+18
| | | | | | | | An error occurs because horizon searches for lessc in /usr/lib/python2.7/site-packages/bin while this is installed in /usr/share/bin. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-horizon: Change tabs to spacesMihai Prica2013-08-281-28/+29
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* keystone, nova: Moved environment variables to novaMihai Prica2013-08-283-5/+7
| | | | | | | The keystone package is only installed on a controller node. This way the credentials can be loaded on both types of nodes. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-nova: Minor refactoringMihai Prica2013-08-281-3/+14
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* identity: Set ADMIN_PASSWORD from identity classMihai Prica2013-08-281-2/+2
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-keystone: Remove old commentsMihai Prica2013-08-281-3/+0
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-quantum: Configure postgresql credentialsMihai Prica2013-08-283-3/+9
| | | | | | | The user and password for postgresql are defined in the identity class and are loaded by the recipes from this class. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-nova: Configure postgresql credentialsMihai Prica2013-08-282-2/+5
| | | | | | | The user and password for postgresql are defined in the identity class and are loaded by the recipes from this class. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-keystone: Configure postgresql credentialsMihai Prica2013-08-282-5/+6
| | | | | | | The user and password for postgresql are defined in the identity class and are loaded by the recipes from this class. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-glance: Configure postgresql credentialsMihai Prica2013-08-281-2/+2
| | | | | | | The user and password for postgresql are defined in the identity class and are loaded by the recipes from this class. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-cinder: Configure postgresql credentialsMihai Prica2013-08-282-2/+5
| | | | | | | The user and password for postgresql are defined in the identity class and are loaded by the recipes from this class. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-quantum: Load credentials from the identity classMihai Prica2013-08-282-292/+10
| | | | | | | The configuration files are now automatically created from the templates. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-glance: Load credentials from the identity classMihai Prica2013-08-284-597/+17
| | | | | | | The configuration files are now automatically created from the templates. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-nova: Load credentials from the identity classMihai Prica2013-08-282-115/+10
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-glance: Removed old codeMihai Prica2013-08-281-4/+0
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-cinder: Use the identity to get credentialsMihai Prica2013-08-282-67/+10
| | | | | | | The credentials are defined in the identity bbclass and the recipe will set them in the configuration files. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* identity.bbclass: Added new classMihai Prica2013-08-281-2/+4
| | | | | | | | | | Each service(nova, glance, cinder...) has its own keystone user. These users are created in a postinstall for the keystone package. This new class is used to store some of the credentials used by keystone and all packages will inherit this class and create the appropriate configuration files. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-nova: Minor modificationsMihai Prica2013-08-281-7/+1
| | | | | | | | - Removed old comments. - Added glance_host option. This should be used on a compute node. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-horizon: Added 2013.1.2Mihai Prica2013-08-282-0/+156
| | | | | | | | * Horizon is a web based user interface that provides an interface to the OpenStack services. * Added initscript that starts the service at boot time. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-cinderclient: Added setuptools-git dependencyMihai Prica2013-08-281-0/+1
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-novaclient: Added setuptools-git dependencyMihai Prica2013-08-281-0/+1
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-django: Reverted to 1.4.5Mihai Prica2013-08-281-6/+6
| | | | | | The Horizon OpenStack dashboard requires Django >=1.4 <1.5. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-cinder: Removed old configurationMihai Prica2013-08-281-4/+0
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-django: added 1.5Mihai Prica2013-08-281-0/+21
| | | | | | Initial draft Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-django-openstack-auth: added 1.0.11Mihai Prica2013-08-281-0/+22
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-django-compressor: added 1.3Mihai Prica2013-08-281-0/+21
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-appconf: added 0.6Mihai Prica2013-08-281-0/+21
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-quantum: Removed old commentsMihai Prica2013-08-281-3/+0
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-cinder: Decreased sleep periodMihai Prica2013-08-281-1/+2
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* nova, glance, keystone, quantum: Make sure postgres is runningMihai Prica2013-08-284-1/+26
| | | | | | | | | | To initialize the databases the openstack components require that the postgresql server is running. Because there is no guarantee to the order in which postinstalls are run, the postinstalls first check to see if postgresql is running, and start it if it's not. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-glance: Create log directory in initscriptMihai Prica2013-08-282-1/+12
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-pytz: added 2013bMihai Prica2013-08-281-0/+18
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-six: added 1.3.0Mihai Prica2013-08-281-0/+18
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-swift: Added 1.8.0Mihai Prica2013-08-281-0/+51
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-keystone: Cleaned old comments and decreased sleepMihai Prica2013-08-281-3/+2
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-quantum: Cleaned old commentsMihai Prica2013-08-281-2/+0
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-nova: Cleaned old commentsMihai Prica2013-08-281-2/+1
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-cinder: Initialize postgresql before postinstallMihai Prica2013-08-281-2/+6
| | | | | | This is necessary because the postinstalls are run in alphabetical order. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-psycopg2: Renamed patchMihai Prica2013-08-282-5/+8
| | | | | | | Added the reason for why it is necessary and the UpstreamStatus to the patch. Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-quantum: Updated db usernameMihai Prica2013-08-282-2/+2
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-nova: Updated db usernameMihai Prica2013-08-281-8/+1
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>
* python-keystone: Updated db usernameMihai Prica2013-08-281-1/+1
| | | | Signed-off-by: Mihai Prica <prica.mihai@gmail.com>