From e575ce2c01028a2b4c0273ca04fd6dbb8d9ece76 Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Wed, 2 Oct 2013 09:12:43 -0400 Subject: 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 --- meta-openstack-compute-deploy/classes/compute.bbclass | 2 -- meta-openstack-compute-deploy/classes/hosts.bbclass | 6 ++++++ 2 files changed, 6 insertions(+), 2 deletions(-) delete mode 100644 meta-openstack-compute-deploy/classes/compute.bbclass create mode 100644 meta-openstack-compute-deploy/classes/hosts.bbclass (limited to 'meta-openstack-compute-deploy') 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 @@ -CONTROLLER_IP ?= "192.168.7.2" -CONTROLLER_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 @@ +COMPUTE_IP ?= "192.168.7.4" +COMPUTE_HOST ?= "compute" +CONTROLLER_IP ?= "192.168.7.2" +CONTROLLER_HOST ?= "controller" +MY_IP ?= "${COMPUTE_IP}" +MY_HOST ?= "${COMPUTE_HOST}" -- cgit v1.2.3-54-g00ecf