summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools
Commit message (Collapse)AuthorAgeFilesLines
...
* python-horizon: Fix whitespace in recipe.Liam R. Howlett2014-09-041-8/+14
| | | | | | | | The horizon recipe had lines running well over 80 characters and indentation that was not a multiple of 4. This patch fixes those issues. Signed-off-by: Liam R. Howlett <Liam.Howlett@WindRiver.com>
* python-horizon: Fix path usage to bitbake defined paths.Liam R. Howlett2014-09-041-14/+18
| | | | | | | | The horizon recipe had references to paths defined as variables for recipe use. This patch converts those paths into the variable version for easier portability. Signed-off-by: Liam R. Howlett <Liam.Howlett@WindRiver.com>
* python-nova: Remove duplicate line from conf file.Liam R. Howlett2014-09-041-1/+0
| | | | | | | Removed duplicate dhcpbridge_flagfile from the nova.conf file. Signed-off-by: Liam R. Howlett <Liam.Howlett@WindRiver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* horizon: add juno dependenciesBruce Ashfield2014-09-0414-0/+364
| | | | | | | Update the horizon recipe to have all the juno dependencies. We also introduce the recipes to build those dependencies. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* nova: update to juno configuration requirementsBruce Ashfield2014-09-032-4/+369
| | | | | | | | | To boot a nested guest in juno, we need to relocate the virtualization type config setting into the [libvirt] section. With this, we can sucessfully launch a guest. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* nova: add oslo.i18n to dependency listBruce Ashfield2014-09-021-0/+1
| | | | | | nova-compute needs oslo.i18n, so we add it to the dependency list. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* core: update core projects to juno 2014.2-b2 versionsBruce Ashfield2014-08-2911-36/+40
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* support packages: uprev to juno 2014.2-b2 versionsBruce Ashfield2014-08-295-4/+73
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* Keystone: package service/user addition sstate vardepsMark Asselstine2014-08-273-0/+3
| | | | | | | | | | | | | | Several packages utilize the keystone package service/user addition services recently added. The data passed to this service depends on the value assigned to CONTROLLER_IP (used as KEYSTONE_HOST), however, bitbake is not able to automatically determine this dependency so several tasks which should be rerun to create updated package postinst scripts are not run when CONTROLLER_IP is modified. Adding the necessary vardeps ensure these tasks are rerun and now adjustments made to CONTROLLER_IP are reflected in the generated packages. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* oslo.messaging: update to 1.4.0.0a4Bruce Ashfield2014-08-261-5/+4
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* bbappends: resync bbappends to oe-core/meta-oe latestBruce Ashfield2014-08-252-5/+5
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* nova: fix FILESEXTRAPATHS warningBruce Ashfield2014-08-201-1/+1
| | | | | | | convert FILESEXTRAPATHS to FILESEXTRAPATHS_append to avoid warnings from the latest oe-core. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* glance: update API and client to Juno latestBruce Ashfield2014-08-202-2/+3
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* osprofiler: add os profiling python supportBruce Ashfield2014-08-201-0/+29
| | | | | | | osprofiler is part of the juno glance pipelien processing. So to meet the requirements of glance-api, we introduce the recipe. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* eventlet: uprev to 0.15.1Bruce Ashfield2014-08-201-2/+2
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-keystone: Remove openrc file and bb references.Liam R. Howlett2014-07-312-8/+0
| | | | | | | This patch removes the openrc file from the keystone package and references to openrc in the python-kystone_git.bb file. Signed-off-by: Liam R. Howlett <Liam.Howlett@WindRiver.com>
* glance: update to july-31st SRCREVBruce Ashfield2014-07-311-1/+1
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* qemu: add qemu 2.0.0 bbappendBruce Ashfield2014-07-311-0/+0
| | | | | | Adding a qemu 2.0.0 bbappend to sync with oe-core master. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-retrying: introduce recipe for juno glance supportBruce Ashfield2014-07-301-0/+27
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* keystone: set default backend to ldapAmy Fong2014-07-301-2/+10
| | | | Signed-off-by: Amy Fong <amy.fong@windriver.com>
* Keystone: implement incremental/programatic user additionsAndy Ning2014-07-301-190/+210
| | | | | | | | | | | | | Instead of creating tenant/user/role and service/endpoint for all openstack services in keystone postinstall, now each of the services creates keystone identities by itself in its own postinstall. The existing identity.sh has been re-written to be a utility that takes parameters, and the service postinstall calls identity.sh to create its own keystone identities. The identity.sh can also be used as a tool to manually create keystone identities at run time. Signed-off-by: Andy Ning <andy.ning@windriver.com>
* Keystone: package service/user additionsAndy Ning2014-07-309-18/+240
| | | | | | | | | | | Instead of creating tenant/user/role and service/endpoint for all openstack services in keystone postinstall, now each of the services creates its own keystone identities by queueing them up in its postinstall to a file /etc/keystone/service-user-setup. service-user-setup script, when run as the last postinstall, calls identity.sh with keystone identity parameters to create necessary identities for the services. Signed-off-by: Andy Ning <andy.ning@windriver.com>
* keystone: Add script to change backend to hybridAmy Fong2014-07-304-10/+56
| | | | | | | | | Adding /etc/keystone/hybrid-backend-setup and convert_keystone_backend.py to set the backend for keystone to hybrid and starts openldap and restarts keystone. Signed-off-by: Amy Fong <amy.fong@windriver.com>
* keystone: enable openLDAP authenticationAmy Fong2014-07-301-0/+46
| | | | | | | | | Modify python-keystone to use openldap. keystone's identity and assignment backends are configured to utilitze the hybrid backend for keystone. This backend uses the SQL backend by default and goes to the ldap database if the user doesn't exist. Signed-off-by: Amy Fong <amy.fong@windriver.com>
* keystone: package python-keystone-hybrid-backendAmy Fong2014-07-301-0/+22
| | | | | | | This project provides two alternative backends for Keystone: hybrid SQL and LDAP backends for OpenStack Keystone Signed-off-by: Amy Fong <amy.fong@windriver.com>
* openstack initscript: add resetAmy Fong2014-07-2517-34/+361
| | | | | | | | Some of the openstack data is associated with external resources (ie glance may have external files), we explicitly invoke the delete commands on those in additional to dropping and recreating the databases. Signed-off-by: Amy Fong <amy.fong@windriver.com>
* glance: update to 2014-07-24 snapshotBruce Ashfield2014-07-251-1/+2
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* eventlet: update to 0.15Bruce Ashfield2014-07-221-2/+2
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* glance: update to july 21 snapshotBruce Ashfield2014-07-221-1/+1
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* clients: update barbican, ceilo, cinder, glance, heat, keystone and swiftBruce Ashfield2014-07-217-13/+13
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* ceilometer: package and deploy api_paste.iniBruce Ashfield2014-07-212-0/+4
| | | | | | | | Ceilometer now requires api_paste.ini for the API to start and be functionaly. So we add it to our core package, and update the .conf file with the name. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* neutronclient: update to 2014 latestBruce Ashfield2014-07-211-2/+2
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* novaclient: update to 2014.x latestBruce Ashfield2014-07-213-43/+42
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* barbican: bump to juno latestBruce Ashfield2014-07-211-1/+1
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* swift: update to juno release candidateBruce Ashfield2014-07-211-3/+3
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* horizon: update to juno releaseBruce Ashfield2014-07-211-3/+9
| | | | | | | Updating horizon to the juno release branch. New required packages have been added to support this integration. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* saharaclient: introduce saharaclient for horizon (juno) requirementsBruce Ashfield2014-07-211-0/+25
| | | | | | | Introducing the saharaclient, without full sahara support, to meet the client requirements of horizon. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* pyscss: introduce to meet horizon (juno) dependenciesBruce Ashfield2014-07-212-0/+56
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* xstatic-jquery: introduce to meet horizon (juno) dependenciesBruce Ashfield2014-07-211-0/+27
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* xstatic: introduce to meet horizon (juno) dependenciesBruce Ashfield2014-07-211-0/+27
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* ceilometer: update to junoBruce Ashfield2014-07-213-106/+54
| | | | | | | | Updating the ceilometer project to the juno release branches. With this update, we can drop one patch that isno longer needed, and refresh another for juno. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* heat: update to Juno release branchesBruce Ashfield2014-07-211-3/+3
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* glance: update to juno release candidatesBruce Ashfield2014-07-211-3/+5
| | | | | | | | Updating glance to the latest juno development branch. The only significant changes are the introduction of new requirement packages on the rdepends. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* oslo.i18n: introduce glance dependenciesBruce Ashfield2014-07-211-0/+28
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-i18n: introduce to meet glance requirementsBruce Ashfield2014-07-211-0/+28
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* cinder: uprev to junoBruce Ashfield2014-07-182-5/+5
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* neutron: uprev to juno releaseBruce Ashfield2014-07-182-16/+13
| | | | | | | Updating neutron to the juno branches. No configuration or startup changes were required. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* pycadf: introduce to meet juno requirementsBruce Ashfield2014-07-181-0/+33
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* posix-ipc: introduce to meet juno requirementsBruce Ashfield2014-07-181-0/+27
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* oslo.db: add oslo.db to satisfy juno requirementsBruce Ashfield2014-07-181-0/+32
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>