summaryrefslogtreecommitdiffstats
path: root/meta-openstack-compute-deploy
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2013-10-02 09:12:43 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2013-10-03 01:15:42 -0400
commite575ce2c01028a2b4c0273ca04fd6dbb8d9ece76 (patch)
tree6e4472c8c2a81d2fedb8320fd7de62bf743bb279 /meta-openstack-compute-deploy
parentdfead22088d47a052d2170e126a5c52d942b35d2 (diff)
downloadmeta-cloud-services-e575ce2c01028a2b4c0273ca04fd6dbb8d9ece76.tar.gz
openstack: create simple deployment framework
To facilitate the creation of a simple OpenStack configuration with a single control and compute node, several things should be known at build time (since in this simple configuration, we are not using dhcp, or other name resolution techniques): - The IP of control node - The IP of the compute node - The IP of the node being built From these values, the OpenStack components and support applications (databases, access control, etc) are configured, as well as simple name resolution generated at build time. A single "hosts" bbclass should be provided with the following values: COMPUTE_IP ?= "192.168.7.4" COMPUTE_HOST ?= "compute" CONTROLLER_IP ?= "192.168.7.2" CONTROLLER_HOST ?= "controller" MY_IP ?= "${CONTROLLER_IP}" MY_HOST ?= "${CONTROLLER_HOST}" The above example is for a control node, using the runqemu default addresses. The openstack-base.bbclass is responsible for generating /etc/hosts and /etc/hostname. Any image type that requires these values at boot tiem, should inherit this class to allow its rootfs post population hooks to run and generate the required configuration. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack-compute-deploy')
-rw-r--r--meta-openstack-compute-deploy/classes/compute.bbclass2
-rw-r--r--meta-openstack-compute-deploy/classes/hosts.bbclass6
2 files changed, 6 insertions, 2 deletions
diff --git a/meta-openstack-compute-deploy/classes/compute.bbclass b/meta-openstack-compute-deploy/classes/compute.bbclass
deleted file mode 100644
index 46749b1..0000000
--- a/meta-openstack-compute-deploy/classes/compute.bbclass
+++ /dev/null
@@ -1,2 +0,0 @@
1CONTROLLER_IP ?= "192.168.7.2"
2CONTROLLER_HOST ?= "192.168.7.2"
diff --git a/meta-openstack-compute-deploy/classes/hosts.bbclass b/meta-openstack-compute-deploy/classes/hosts.bbclass
new file mode 100644
index 0000000..5376b02
--- /dev/null
+++ b/meta-openstack-compute-deploy/classes/hosts.bbclass
@@ -0,0 +1,6 @@
1COMPUTE_IP ?= "192.168.7.4"
2COMPUTE_HOST ?= "compute"
3CONTROLLER_IP ?= "192.168.7.2"
4CONTROLLER_HOST ?= "controller"
5MY_IP ?= "${COMPUTE_IP}"
6MY_HOST ?= "${COMPUTE_HOST}"