From: Bin Yang Date: Fri, 8 Sep 2017 07:50:05 +0000 (+0800) Subject: Add docker build file X-Git-Tag: v1.0.0~57 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=9be6dfbd7c81d017865a5eccacdcedb184ef6e50;p=multicloud%2Fopenstack.git Add docker build file add docker build file to generate container image Change-Id: I08e289dea8caf01b9690d80c2c21355d0f121a6b Issue-Id: MULTICLOUD-58 Signed-off-by: Bin Yang --- diff --git a/newton/docker/Dockerfile b/newton/docker/Dockerfile new file mode 100644 index 00000000..e8440e1c --- /dev/null +++ b/newton/docker/Dockerfile @@ -0,0 +1,24 @@ +FROM python:2 + +ENV MSB_ADDR "127.0.0.1" +ENV MSB_PORT "80" +ENV AAI_ADDR "aai.api.simpledemo.openecomp.org" +ENV AAI_PORT "8443" +ENV AAI_SCHEMA_VERSION "v11" +ENV AAI_USERNAME "AAI" +ENV AAI_PASSWORD "AAI" + +EXPOSE 9003 + +# COPY ./ /opt/newton/ +RUN apt-get update && \ + apt-get install -y memcached && \ + apt-get install -y unzip && \ + cd /opt/ && \ + wget -O multicloud-openstack-newton.zip "https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.multicloud.openstack&a=multicloud-openstack-newton&e=zip&v=LATEST" && \ + unzip -q -o -B multicloud-openstack-newton.zip && \ + rm -f multicloud-openstack-newton.zip && \ + pip install -r /opt/newton/requirements.txt + +WORKDIR /opt/newton +CMD /bin/sh -c /opt/newton/run.sh \ No newline at end of file diff --git a/newton/docker/build-image.sh b/newton/docker/build-image.sh new file mode 100644 index 00000000..8d5fe479 --- /dev/null +++ b/newton/docker/build-image.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +IMAGE="multicloud-openstack-newton" +VERSION="latest" + +docker build -t ${IMAGE}:${VERSION} . diff --git a/newton/pom.xml b/newton/pom.xml index e1989492..555f3b53 100644 --- a/newton/pom.xml +++ b/newton/pom.xml @@ -11,7 +11,10 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --> - + org.onap.oparent oparent @@ -47,4 +50,51 @@ + + + docker + + + + io.fabric8 + docker-maven-plugin + 0.16.5 + false + + + + onap/multicloud/multicloud-openstack-newton + + try + ${basedir}/docker/ + ${basedir}/docker/Dockerfile + + ${project.version}-STAGING-latest + + + + + + + + generate-images + package + + build + + + + push-images + deploy + + build + push + + + + + + + + diff --git a/newton/run.sh b/newton/run.sh index 8b8b0890..763f72d7 100755 --- a/newton/run.sh +++ b/newton/run.sh @@ -10,4 +10,22 @@ # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -nohup python manage.py runserver 127.0.0.1:9003 > /dev/null & +#!/bin/bash + +sed -i "s/MSB_SERVICE_ADDR =.*/MSB_SERVICE_ADDR = \"${MSB_ADDR}\"/g" newton/pub/config/config.py +sed -i "s/MSB_SERVICE_PORT =.*/MSB_SERVICE_PORT = \"${MSB_PORT}\"/g" newton/pub/config/config.py +sed -i "s/AAI_ADDR =.*/AAI_ADDR = \"${AAI_ADDR}\"/g" newton/pub/config/config.py +sed -i "s/AAI_PORT =.*/AAI_PORT = \"${AAI_PORT}\"/g" newton/pub/config/config.py +sed -i "s/AAI_SCHEMA_VERSION =.*/AAI_SCHEMA_VERSION = \"${AAI_SCHEMA_VERSION}\"/g" newton/pub/config/config.py +sed -i "s/AAI_USERNAME =.*/AAI_USERNAME = \"${AAI_USERNAME}\"/g" newton/pub/config/config.py +sed -i "s/AAI_PASSWORD =.*/AAI_PASSWORD = \"${AAI_PASSWORD}\"/g" newton/pub/config/config.py + +memcached -d -m 2048 -u root -c 1024 -p 11211 -P /tmp/memcached1.pid + +nohup python manage.py runserver 0.0.0.0:9003 2>&1 & + +while [ ! -f logs/runtime_newton.log ]; do + sleep 1 +done + +tail -F logs/runtime_newton.log diff --git a/newton/stop.sh b/newton/stop.sh index db6d7366..1abfe404 100755 --- a/newton/stop.sh +++ b/newton/stop.sh @@ -10,4 +10,5 @@ # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -ps auxww | grep 'manage.py runserver 127.0.0.1:9003' | awk '{print $2}' | xargs kill -9 +ps auxww | grep 'manage.py runserver 0.0.0.0:9003' | awk '{print $2}' | xargs kill -9 +ps auxww | grep 'memcached -d -m 2048 -u root -c 1024 -p 11211 -P /tmp/memcached1.pid' | awk '{print $2}' | xargs kill -9