summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* clients: update to the latest client codeBruce Ashfield2014-04-038-9/+9
| | | | | | Updating to the latest clients as of April 3, 2014. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* clients: add bash-completion supportBruce Ashfield2014-04-039-22/+105
| | | | | | | Package and enable the bash completion suppor that comes with the various client packages. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* controller: remove nova-client from packagegroupBruce Ashfield2014-04-031-1/+0
| | | | | | | The component clients are brought in via the component recipes. The nova client was the only one on the package list, and can be removed. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* kernel: remove 3.8 bbappend, add 3.14Bruce Ashfield2014-04-021-3/+2
| | | | | | | Adjusting the kernel fragments to the latest oe-core/yocto 1.6 supported kernel list. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* lvm2: drop readline patchBruce Ashfield2014-04-022-56/+0
| | | | | | | The lvm2 in meta-oe now deals with the readline function issues, so we can drop the meta-cloud-services patch. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* rabbitmq cannot enable firehose tracerAmy Fong2014-04-011-1/+1
| | | | | | | Modify the erlang_cookie for root's home directory in the initrd script to enable the root user to run rabbitmq configuration options. Signed-off-by: Amy Fong <amy.fong@windriver.com>
* Memory leak from timingsAmy Fong2014-03-3118-7/+374
| | | | | | | | | | | | | | | | | Memory leak happens when the dynamic list times grows without anything to reset it. In ceilometer and cinder configuration files, the new option is created: [nova_client] max_timing_buffer=<value> In all clients found that uses extends the HTTPClient and uses the times list, we limit the size of the list by popping off the oldest item in the list to maintain a maximum size. A default size of 200 is chosen, configurable by the above configuration option. Signed-off-by: Amy Fong <amy.fong@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* OpenStack: sysvinit scripts - enable loggingAmy Fong2014-03-2810-14/+45
| | | | | | | Explicitly enable --log-dir to enable logging where available Signed-off-by: Amy Fong <amy.fong@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* python-nova: drop python-argparse dependencyBruce Ashfield2014-03-281-1/+0
| | | | | | | | | | | | | | | | | argparse is part of python 2.7+, so there's no need to install the .egg version of argparse. Nova was pulling in this requirement, which doesn't cause a problem until another python app includes both argparse and the built in one. That results in the following: UserWarning: Module argparse was already imported from /usr/lib/python2.7/argparse.pyc, but /usr/lib/python2.7/site-packages is being added to sys.path So we drop the argparse dependency, everything still works and we no longer have the warning. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* erlang: update to R16BBruce Ashfield2014-03-287-1/+1290
| | | | | | | | | | | | Updating to the R16B erlang version from: https://github.com/joaohf/meta-erlang This is a cherry pick of the latest to avoid adding a new layer dependency. Eventually, this will be dropped and the layer used directly. We also update rabbitmq-server to depend on erlang-modules to get the proper support on target. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* compute/controller: make image extra space additiveBruce Ashfield2014-03-272-3/+4
| | | | | | | | To ensure that the free space required for proper operation is not clobber by other layers manipulating the extra space variable, we make our additions additive versus absolute. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* rabbitmq: update to 3.2.4Bruce Ashfield2014-03-271-4/+6
| | | | | | | The existing version of rabbitmq is showing its age, updating it to 3.2.4 so we can take advantage of better debug and new functionality. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* nova-consoleauth :redundant "status" in helpAmy Fong2014-03-271-1/+1
| | | | | | | Usage info for initrd script says status twice, cleaning up. Signed-off-by: Amy Fong <amy.fong@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* controller/compute: add debug and extras packagegroupsBruce Ashfield2014-03-272-0/+4
| | | | | | | | Add the extras and debug package groups by default. These can later be convered to image or distro features, but for now, we turn them on universally. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* cloud-extras: introduce extras package groupBruce Ashfield2014-03-271-0/+16
| | | | | | | | Introducing the "extras" package group that hold non-essential, but packages that increase the usability of the cloud userspace. These increase the size of the image, but we value usability over small size at this point. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* openstack: add debug packagegroupBruce Ashfield2014-03-271-0/+13
| | | | | | | | | | Add a package group which contains tools and utilities for debugging a cloud system. This currently only contains the core-tools packagegroup, but cloud specific utilities will be added over time. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* xterm: depend on freetype-nativeBruce Ashfield2014-03-271-0/+1
| | | | | | | | xterm's configure uses freetype, but there is no dependency on it in the recipe. This is a race condition that leads to host contamination and QA failures if the host's freetype-config is used. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* rabbitmq-server: start failedAmy Fong2014-03-262-3/+3
| | | | | | | | | | | | | | | | | | Starting : FAILED - check /var/log/rabbitmq/startup_{log, _err} rabbitmq-server status also shows an error message: Status of node rabbit@controller ... Error: unable to connect to node rabbit@controller: nodedown <snip> There's a problem with erlang cookie synchronization. rabbitmq's home directory is created and is used as the location for the cookie. Signed-off-by: Amy Fong <amy.fong@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* tgtd init script needs to update its usage infoAmy Fong2014-03-261-1/+1
| | | | | | | tgtd implements status and reload, need to add this to the usage info Signed-off-by: Amy Fong <amy.fong@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* docs: add README.tempestBruce Ashfield2014-03-261-0/+55
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* docs: Add README.spiceAmy Fong2014-03-261-0/+82
| | | | | | | Create a README.spice and document and special consideration, usage.... Signed-off-by: Amy Fong <amy.fong@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* qemu: inhibit spice dependency for native and native-sdk buildsBruce Ashfield2014-03-261-0/+2
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* spice: updates to work with latest autotoolsMark Asselstine2014-03-262-4/+37
| | | | | | | | | | | | We were getting several errors during configure related to autoreconf. We need to create an empty m4 directory as well as enable the subdir-objects option to allow configure to complete successfully. There were indications that this second issue was fixed upstream but even using the latest git trees I am seeing this failure. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* README: add meta-cloud-services to reference layer listBruce Ashfield2014-03-251-0/+1
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* qemu: enable spice for qemu console accessBruce Ashfield2014-03-251-0/+3
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* cloud-services: add celt051Bruce Ashfield2014-03-251-0/+30
| | | | | | spice requires celt051. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* meta-cloud-services: introduce spiceBruce Ashfield2014-03-252-0/+163
| | | | | | | A common requirement for many cloud systems is remote console access. Adding spice to the common layer allows a rich console environment to be provided. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* OpenStack: modify controller to be able to talk to both consoleAmy Fong2014-03-255-139/+16
| | | | | | | | | | | | | | | We modify the controller so that both vnc and spice html5 proxies are running. Since in the current recipe, both controller and compute share the same nova.conf file, in the compute, both vnc and spice html5 are set to enabled and in this configuration, vnc is chosen (in source: vnc is chosen because it's better tested). To change to spice, only change required is on the compute side. The controller (since the default console_type is auto) will try to talk to both and run whichever is available. Signed-off-by: Amy Fong <amy.fong@windriver.com>
* spice: change RDEPENDS to RDPENDS_Bruce Ashfield2014-03-251-1/+1
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* OpenStack: nova-novncproxy:can't stop this serviceAmy Fong2014-03-245-190/+146
| | | | | | | | | | | | nova-novncproxy and nova-spicehtml5proxy both do not check to see if the process specified in PIDFILE exists before firing off a new one. Both initrd files can actually use nova.init (used for the many other nova-* daemons) nova-consoleauth also has this issue, we add a check in start to see if the process in PIDFILE exists and exits if it does. Signed-off-by: Amy Fong <amy.fong@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* OpenStack: add SPICE console supportAmy Fong2014-03-246-4/+163
| | | | | | | | | | | | Package spice-html5 Modify python-nova to add infrastructure for nova-spicehtml5proxy support. Note: spice is the default Signed-off-by: Amy Fong <amy.fong@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* glance: make default_store configurableVu Tran2014-03-241-0/+4
| | | | | | | | | The "default_store" option in /etc/glance/glance-api.conf controls how glance store images. Make this option configurable through variable GLANCE_DEFAULT_STORE. Signed-off-by: Vu Tran <vu.tran@windriver.com>
* cinder: add script for creating volume typeVu Tran2014-03-242-0/+12
| | | | | | | | Add a convenient script for creating Cinder volume types which are currently supported. Signed-off-by: Vu Tran <vu.tran@windriver.com>
* nova-compute: enable to use cephVu Tran2014-03-245-0/+192
| | | | | | | | | | | | | Enable nova-compute to: * use cinder volume stored in a ceph pool as a block device * store glance image into a ceph pool. Also port 2 patches from https://github.com/openstack/nova branch master into Havana branch. Signed-off-by: Vu Tran <vu.tran@windriver.com>
* cinder: enable cinder-backup to use cephVu Tran2014-03-243-2/+23
| | | | | | | | Enable cinder-backup to use ceph as backend. It mainly changes cinder.conf and creates cinder-backup package. Signed-off-by: Vu Tran <vu.tran@windriver.com>
* cinder: enable ceph rbd volume backendVu Tran2014-03-243-5/+20
| | | | | | | Add ceph rbd backend into multi-backend cinder-volume support. Signed-off-by: Vu Tran <vu.tran@windriver.com>
* controller: bump default image size to 5GBruce Ashfield2014-03-241-1/+1
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* images: rename packagegroup-core-basicMark Asselstine2014-03-222-2/+2
| | | | | | | | | Commit 91c372f287732cdedbd7c1204c6ba5f34e5b93f6 [core-image-basic / packagegroup-core-basic: rename to *-full-cmdline] in yocto renamed these tasks so we need to reflect that change here. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* lvm2: fix compilation with latest readline versionMark Asselstine2014-03-223-1/+56
| | | | | | | | | | Commit 0460bd62663d6db4c9b6aed5edd73fb0d052ffb2 [lvm2: allow compiles to use latest readline] forced us to use an old version of readline. Here we backport an upstream lvm2 commit which allows us to use new readline and drop the PREFERRED_VERSION_ for readline. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* libvirt: match meta-virtualization move to v1.2.2Mark Asselstine2014-03-221-0/+0
| | | | | | | | In order for our bbappends to be effective we need version match with what is in meta-virtualization. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* sql-alchemy: prefer the pypi versionBruce Ashfield2014-03-171-0/+5
| | | | | | | The sql-alchemy project page has remove the 0.7.9 tarball. So we switch to the pypi version. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* OpenStack: Add to missing functionality in sysvinit scriptsAmy Fong2014-03-1714-53/+281
| | | | | | | | | Add status/reload to sysvinit scripts Modify tgtd to make start/stop work better (borrowed from Debian's implementation) Signed-off-by: Amy Fong <amy.fong@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* openstack: add open-isci from git://github.com/DFE/HIPOSBruce Ashfield2014-03-178-0/+216
| | | | | | | | | | To support the cinder iscsi backend, we need iscsi-* recipes. The HIPOS layer contains a reference implementation, but has distro bindings that we must avoid. So for now, we make a copy and reference the other layer. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* openstack: add meta-filesystem to layer dependsBruce Ashfield2014-03-171-0/+1
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* openstack: force readline 5.xBruce Ashfield2014-03-171-0/+1
| | | | | | | readline 6.x triggers build errors with LVM2, so we need to set our preferred version to 5.x. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* cinder-volume: change lvm pv to be configured at runtimeVu Tran2014-03-173-10/+18
| | | | | | | | | By default lvm-iscsi uses loopdev as lvm physical volume. This patch makes it a bit easier to allow other layer to be able configure lvm physical volume. Signed-off-by: Vu Tran <vu.tran@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* Readjust the start level of openstack componentsVu Tran2014-03-179-8/+36
| | | | | | | | | | | | | | Currently all the openstack components have default start level of 20. There are other services such as glusterfs, rabbbitmq, database... are also starting at the same start level. On some platform, this can cause racing condition between services which in turn causes some of openstack components not started. By adjusting the openstack components start level to higher will ensure that system services start in the determistic way. Signed-off-by: Vu Tran <vu.tran@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* cinder: enable glusterfs backendVu Tran2014-03-176-3/+46
| | | | | | | | | | | | | | This patch adds glusterfs backend into multi-backend cinder support (total of lvm-iscsi, nfs, and glusterfs). This including changing cinder.conf, creating missing glusterfs_shares config file, and adding glusterfs-client into compute/controller node and gluster-server into controller node. Also meta-filesystems is included to pickup fuse filesytem which is needed by glusterfs. Signed-off-by: Vu Tran <vu.tran@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* cinder: enable nfs backendVu Tran2014-03-175-4/+51
| | | | | | | | | | This patch enables multi-backend support (lvm-iscsi and nfs) on cinder-volume. This including changing cinder.conf, creating missing nfs_shares config file, and adding mount.nfs into compute node image. Signed-off-by: Vu Tran <vu.tran@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* cinder: enable lvm-iscsi backendVu Tran2014-03-172-0/+14
| | | | | | | | Currently compute-note does not have initiator iscsi working which is required to mount cinder block device over iscsi. Signed-off-by: Vu Tran <vu.tran@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>