TOPIC: ODL DOCKER 71/171/4
authorDaniel Smith <daniel.smith@ericsson.com>
Tue, 24 Mar 2015 05:23:32 +0000 (01:23 -0400)
committerDaniel Smith <daniel.smith@ericsson.com>
Tue, 24 Mar 2015 11:42:27 +0000 (07:42 -0400)
commita5a094a199226f312e795c3019c5793094e5378e
tree0dca8f818af549f096c93814c420e7e584246935
parent97e758182bf69a616db216a43636d96f2c776770
TOPIC: ODL DOCKER
AUTHOR: DANIEL SMITH
*** PLEASE MERGE **

UPDATED TO REFLECT INPUT FRMO J. BJUREL
  - fixed whitespaces
  - fixed location of .erb file (they should have been in templates - the directory was there just int he wrong spot)
  - removed opcheck.pp from common opnfv class
  - Removed Debug from fuel/build/Makefile :)

UPDATE: Input from S. Berg and F. Bockners incorporated.  Merge required before we can refactor to common puppet manifest directory

This patchset delivers the folowing functionality:
- implementation of the common/opnfv-puppet structure / move of .pp files and update of f_odl_docker to build / source from there
- creation of f_odl_doc subclass
- fetch of latest stable release of ODL
- fetch of latest docker binary release (TODO: this will be changed in next patchset push)
- build of docker container with all needed libs and port exposure for DLUX and OVSDB/ODL with Openstack Integration (OVS Manager)
- deployment of both the target odl docker image as well as the docker runtime binary to the control nodes via puppet script.

GENERATES:
- docker-latest - binary of docker for use on control node
- odl_docker_image.tar - a docker container with a ODL controller running DLUX and OVSDB

ENABLE / DISABLE:
        - Comment/Un-comment "SUBDIRS += f_odl_doc in base (fuel/build/) Makefile

Breakdown of Update / Edits per File:
=====================================
fuel/build/Makefile
- Modified include to capture the newly created f_odl_doc directory

fuel/build/f_odl_docker/Makefile
- Fetches libraries and produces two outputs:
docker-latest - binary of docker (actually lxc-docker cause ODL Container is running 12.04 (precise) libraries - i.e java7, tz 12.04, etc)
odl_docker_image.tar - this is a docker image defined in ./dockefile/Dockerfile and contains the ODL distro + setup and deployment scripts for
runtime on the target control node.

fuel/build/f_odl_docker/dockerfile/Dockerfile
- This Dockerfile defined the packages for use in the Docker Container that will run ODL with DLUX and OVSDB submodules.  It also defines the ports to be
exposed to the HOST OS (and thus as well through docker the ODL Controller exists in a private, but routable via but the fuel (10.20.0.0/16) and the
tenants public network since docker handles the mapping (see the docker run command in the start_odl_docker.sh script)

fuel/build/f_odl_docker/dockerfile/check_feature.sh
- Simple expect script that starts up a client and checks that the features are installed (used during visual demo only)
TODO - Replace with API call to ODL KARAF to install features (LOOKUP - Dont know how to address Karaf programatically - LOOKUP)

fuel/build/f_odl_docker/dockerfile/speak.sh
- Expect script called by odl_start_docker.sh once karaf is up to install the features that we need (runtime inside container script) called via ENTRYPOINT in Dockerfile
at runtime on control node.

fuel/build/f_odl_docker/dockerfile/start_odl_docker.sh
- This is the CMD/ENTRYPOINT defined in docker and is what is called from the controller when you start the container (note: This runs inside the conatiner), not
to be confused with staring the actual container on the control node).  This script fires up Karaf first time, loads DLUX and OVSDB modules
and monitors that the container is up.  The container itself is started on the control node via /opt/opnfv/start_odl_container.sh which includes the syntax
for the port mapping (RANDOM or 1:1).
TODO -
integrate into controller monitor script to ensure better handling (stop, start, monitor) of docker processes
remove expect helper scripts and replace with API/JSON or some other appropriate method to KARAF

fuel/build/f_odl_docker/puppet/modules/opnfv/manifests/odl_doc.pp
- This puppet manifest defined where the docker binary and docker image should be placed on the target control node. /opt/opnfv/start_odl_container.sh will install
docker binary package (if necessary) and load ODL docker image into docker, start the image.  This file just ensures placement in /opt/opnfv/odl_docker

fuel/build/f_opnfv_puppet/puppet/modules/opnfv/manifests/init.pp (MODIFICATION):
- Removed previous includes and updated to have only f_odl_doc added

fuel/build/f_odl_doc/scripts/start_odl_container.sh
- this is the control script that will start the docker container (to be run on the control node), this is deployed
this is deployed to /opt/opnfv on the control node via odl_doc puppet manifest file.

JIRA:

DEPRECATED:
Deleted files are no longer needed due to new implementation of ODL.

Change-Id: I26c13cc468a2aba18af78b7a3c78a719033f03e0
Signed-off-by: Daniel Smith <daniel.smith@ericsson.com>
52 files changed:
common/puppet-opnfv/manifests/init.pp
common/puppet-opnfv/manifests/ntp.pp [new file with mode: 0644]
common/puppet-opnfv/manifests/odl_docker.pp [new file with mode: 0644]
common/puppet-opnfv/manifests/resolver.pp [new file with mode: 0644]
common/puppet-opnfv/manifests/templates/dockerfile/Dockerfile [new file with mode: 0644]
common/puppet-opnfv/manifests/templates/dockerfile/container_scripts/check_feature.sh [moved from fuel/build/f_jre/testing/fake_init.pp with 72% similarity]
common/puppet-opnfv/manifests/templates/dockerfile/container_scripts/speak.sh [new file with mode: 0644]
common/puppet-opnfv/manifests/templates/dockerfile/container_scripts/start_odl_docker_container.sh [new file with mode: 0644]
common/puppet-opnfv/manifests/templates/ntp.conf.compute.erb [moved from fuel/build/f_libnss/testing/fake_init.pp with 55% similarity]
common/puppet-opnfv/manifests/templates/ntp.conf.controller.erb [moved from fuel/build/f_jre/testing/README with 55% similarity]
fuel/build/Makefile
fuel/build/config.mk
fuel/build/f_atk_wrap/Makefile [deleted file]
fuel/build/f_atk_wrap/puppet/modules/opnfv/manifests/atk_wrap.pp [deleted file]
fuel/build/f_ca_cert/Makefile [deleted file]
fuel/build/f_ca_cert/puppet/modules/opnfv/manifests/ca_cert.pp [deleted file]
fuel/build/f_comm_java/Makefile [deleted file]
fuel/build/f_comm_java/puppet/modules/opnfv/manifests/comm_java.pp [deleted file]
fuel/build/f_defjre/Makefile [deleted file]
fuel/build/f_defjre/puppet/modules/opnfv/manifests/defjre.pp [deleted file]
fuel/build/f_gif/Makefile [deleted file]
fuel/build/f_gif/puppet/modules/opnfv/manifests/gif.pp [deleted file]
fuel/build/f_java/Makefile [deleted file]
fuel/build/f_java/README [deleted file]
fuel/build/f_java/puppet/modules/opnfv/manifests/java.pp [deleted file]
fuel/build/f_java/testing/README [deleted file]
fuel/build/f_java/testing/fake_init.pp [deleted file]
fuel/build/f_jre/Makefile [deleted file]
fuel/build/f_jre/README [deleted file]
fuel/build/f_jre/puppet/modules/opnfv/manifests/jre.pp [deleted file]
fuel/build/f_jre_head/Makefile [deleted file]
fuel/build/f_jre_head/puppet/modules/opnfv/manifests/jre_head.pp [deleted file]
fuel/build/f_libnss/Makefile [deleted file]
fuel/build/f_libnss/README [deleted file]
fuel/build/f_libnss/puppet/modules/opnfv/manifests/libnss.pp [deleted file]
fuel/build/f_libnss/testing/README [deleted file]
fuel/build/f_libpcs/Makefile [deleted file]
fuel/build/f_libpcs/puppet/modules/opnfv/manifests/libpcs.pp [deleted file]
fuel/build/f_libxt/Makefile [deleted file]
fuel/build/f_libxt/puppet/modules/opnfv/manifests/libxt.pp [deleted file]
fuel/build/f_odl_docker/Makefile [new file with mode: 0755]
fuel/build/f_odl_docker/dockerfile/Dockerfile [new file with mode: 0755]
fuel/build/f_odl_docker/dockerfile/container_scripts/check_feature.sh [new file with mode: 0755]
fuel/build/f_odl_docker/dockerfile/container_scripts/speak.sh [new file with mode: 0755]
fuel/build/f_odl_docker/dockerfile/container_scripts/start_odl_docker.sh [new file with mode: 0755]
fuel/build/f_odl_docker/puppet/modules/opnfv/manifests/odl_docker.pp [new file with mode: 0644]
fuel/build/f_odl_docker/puppet/modules/opnfv/scripts/start_odl_container.sh [new file with mode: 0755]
fuel/build/f_odl_docker/scripts/config_neutron_for_odl.sh [new file with mode: 0644]
fuel/build/f_odl_docker/scripts/prep_nets_for_odl.sh [new file with mode: 0755]
fuel/build/f_odl_docker/scripts/setup_ovs_for_odl.sh [new file with mode: 0644]
fuel/build/f_odl_docker/scripts/start_odl_container.sh [new file with mode: 0755]
fuel/build/f_opnfv_puppet/puppet/modules/opnfv/manifests/init.pp