remove docker build workaroud in function test 55/14055/1
authorGuo Ruijing <ruijing.guo@intel.com>
Thu, 21 Sep 2017 10:11:27 +0000 (03:11 -0700)
committerGuo Ruijing <ruijing.guo@intel.com>
Thu, 21 Sep 2017 11:21:57 +0000 (04:21 -0700)
Change-Id: I4167b423319a1b6c66f232951c5084b7f854d577
Issue-Id: MULTICLOUD-95
Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
ocata/vagrant/test/Dockerfile
ocata/vagrant/test/run.sh [deleted file]
ocata/vagrant/test/test_multicloud.sh

index f956b56..33d1a18 100644 (file)
@@ -3,5 +3,3 @@ FROM multicloud-ocata:latest
 RUN apt-get update && \
      apt-get install -y vim
 ADD extsys.py /opt/ocata/lib/newton/newton/pub/msapi/extsys.py
-ADD run.sh /opt/ocata/run.sh
-RUN chmod 755 /opt/ocata/run.sh
diff --git a/ocata/vagrant/test/run.sh b/ocata/vagrant/test/run.sh
deleted file mode 100644 (file)
index 446172b..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/bash
-# Copyright (c) 2017 Wind River Systems, Inc.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at:
-#       http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-
-#!/bin/bash
-
-sed -i "s/MSB_SERVICE_ADDR =.*/MSB_SERVICE_ADDR = \"${MSB_ADDR}\"/g" ocata/pub/config/config.py
-sed -i "s/MSB_SERVICE_PORT =.*/MSB_SERVICE_PORT = \"${MSB_PORT}\"/g" ocata/pub/config/config.py
-sed -i "s/AAI_ADDR =.*/AAI_ADDR = \"${AAI_ADDR}\"/g" ocata/pub/config/config.py
-sed -i "s/AAI_PORT =.*/AAI_PORT = \"${AAI_PORT}\"/g" ocata/pub/config/config.py
-sed -i "s/AAI_SCHEMA_VERSION =.*/AAI_SCHEMA_VERSION = \"${AAI_SCHEMA_VERSION}\"/g" ocata/pub/config/config.py
-sed -i "s/AAI_USERNAME =.*/AAI_USERNAME = \"${AAI_USERNAME}\"/g" ocata/pub/config/config.py
-sed -i "s/AAI_PASSWORD =.*/AAI_PASSWORD = \"${AAI_PASSWORD}\"/g" ocata/pub/config/config.py
-
-memcached -d -m 2048 -u root -c 1024 -p 11211 -P /tmp/memcached1.pid
-export PYTHONPATH=lib/newton
-nohup python manage.py runserver 0.0.0.0:9006 2>&1 &
-
-while [ ! -f logs/runtime_ocata.log ]; do
-    sleep 1
-done
-
-tail -F logs/runtime_ocata.log
-
index 2466155..9206f31 100644 (file)
@@ -7,7 +7,6 @@ sudo apt-get install -y docker.io
 cd /openstack/ocata/docker
 sudo docker build -t multicloud-ocata:latest .
 cd /vagrant/test
-cp /openstack/ocata/run.sh .
 sudo docker build -t multicloud-ocata-test:latest .
 sudo docker network create --subnet=172.16.77.0/24 onap
 sudo docker run -d -t  --name ocata-test --network onap --ip 172.16.77.40 -e MSB_ADDR=172.16.77.40 -e MSB_PORT=9006 multicloud-ocata-test