diff options
author | 2013-09-23 16:34:28 -0400 | |
---|---|---|
committer | 2013-10-03 01:15:42 -0400 | |
commit | 581052b1783b4639705e5db520797ed81c1a0990 (patch) | |
tree | 9de1de059de42726ada811c8e96b8f6ee507e7c0 /meta-openstack-compute-deploy | |
parent | f6a914b542f228488b66de6f6bd3dfb361e5a728 (diff) | |
download | meta-cloud-services-581052b1783b4639705e5db520797ed81c1a0990.tar.gz meta-cloud-services-581052b1783b4639705e5db520797ed81c1a0990.tar.bz2 meta-cloud-services-581052b1783b4639705e5db520797ed81c1a0990.zip |
meta-openstack-compute-deploy: initial creation
Add a nested layer that contains the configuration and appends necessary
to deploy a compute node.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack-compute-deploy')
4 files changed, 60 insertions, 0 deletions
diff --git a/meta-openstack-compute-deploy/README b/meta-openstack-compute-deploy/README new file mode 100644 index 00000000..12c2bae7 --- /dev/null +++ b/meta-openstack-compute-deploy/README @@ -0,0 +1,48 @@ +meta-openstack-compute-deploy +============================= + +This layer provides support configuring and deploying the recipes to create a +compute node. + +Dependencies +------------ + +This layer depends on: + +URI: git://github.com/openembedded/oe-core.git +branch: master +revision: HEAD +prio: default + +URI: git://github.com/openembedded/meta-oe.git +patches: 0001-python-sqlalchemy-update-to-0.7.9.patch +revision: HEAD +layers: meta-oe + meta-networking + meta-ruby + +URI: git://git.yoctoproject.org/meta-virtualization +branch: master +revision: head + +meta-openstack +branch: master +revision: head + +Maintenance +----------- + +Send pull requests, patches, comments or questions to meta-virtualization@yoctoproject.org + +When sending single patches, please using something like: +'git send-email -1 --to meta-virtualization@yoctoproject.org --subject-prefix=meta-virtualization][PATCH' + +Maintainers: Bruce Ashfield <bruce.ashfield@windriver.com> + +License +------- + +All metadata is MIT licensed unless otherwise stated. Source code included +in tree for individual recipes is under the LICENSE stated in each recipe +(.bb file) unless otherwise stated. + diff --git a/meta-openstack-compute-deploy/classes/compute.bbclass b/meta-openstack-compute-deploy/classes/compute.bbclass new file mode 100644 index 00000000..46749b11 --- /dev/null +++ b/meta-openstack-compute-deploy/classes/compute.bbclass @@ -0,0 +1,2 @@ +CONTROLLER_IP ?= "192.168.7.2" +CONTROLLER_HOST ?= "192.168.7.2" diff --git a/meta-openstack-compute-deploy/conf/layer.conf b/meta-openstack-compute-deploy/conf/layer.conf new file mode 100644 index 00000000..44a035b2 --- /dev/null +++ b/meta-openstack-compute-deploy/conf/layer.conf @@ -0,0 +1,9 @@ +# We have a conf and classes directory, append to BBPATH +BBPATH .= ":${LAYERDIR}" + +# We have a recipes directory, add to BBFILES +BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend" + +BBFILE_COLLECTIONS += "openstack-compute-deploy-layer" +BBFILE_PATTERN_openstack-compute-deploy-layer := "^${LAYERDIR}/" +BBFILE_PRIORITY_openstack-compute-deploy-layer = "6" diff --git a/meta-openstack-compute-deploy/recipes-devtools/python/python-quantum_2013.1.3.bbappend b/meta-openstack-compute-deploy/recipes-devtools/python/python-quantum_2013.1.3.bbappend new file mode 100644 index 00000000..1c10253d --- /dev/null +++ b/meta-openstack-compute-deploy/recipes-devtools/python/python-quantum_2013.1.3.bbappend @@ -0,0 +1 @@ +inherit compute |