Two main process in vfc huawei vnfm pod 69/112869/1
authorsekharhuawei <reddi.shekhar@huawei.com>
Fri, 18 Sep 2020 05:49:28 +0000 (11:19 +0530)
committersekharhuawei <reddi.shekhar@huawei.com>
Fri, 18 Sep 2020 05:49:28 +0000 (11:19 +0530)
Issue-ID: VFC-1692

Signed-off-by: sekharhuawei <reddi.shekhar@huawei.com>
Change-Id: I366431f40b203246d9b4b436c8f3ca2bf8bc9532

huawei/vnfmadapter/VnfmadapterService/docker/Dockerfile
huawei/vnfmadapter/VnfmadapterService/docker/docker-entrypoint.sh
huawei/vnfmadapter/VnfmadapterService/docker/docker-env-config.sh

index a257f9e..696d4cd 100644 (file)
@@ -6,9 +6,6 @@ ENV CATALINA_HOME /service
 ADD . /service
 WORKDIR /service
 RUN bash docker-env-config.sh
-VOLUME /var/lib/mysql
 
-
-EXPOSE 8482
 USER onap
 ENTRYPOINT /service/docker-entrypoint.sh
index e61bbd1..9cfd4dc 100755 (executable)
@@ -46,17 +46,11 @@ echo
 # Configure service based on docker environment variables
 ./instance-config.sh
 
-# Start mysql
-/usr/bin/mysqld_safe &
-
 # Perform one-time config
 if [ ! -e init.log ]; then
     # Perform workarounds due to defects in release binary
     ./instance-workaround.sh
 
-    # Init mysql; set root password
-    ./init-mysql.sh
-
     # microservice-specific one-time initialization
     ./instance-init.sh
 
index 7c4d235..3ae4f98 100644 (file)
@@ -2,33 +2,7 @@
 add_user(){
 
        useradd  onap
-}
-
-set_up_mysql_jdk(){
-
-       sed -i 's/enabled=1/enabled=0/' /etc/yum/pluginconf.d/fastestmirror.conf
-       sed -i 's|#baseurl=http://mirror.centos.org/centos|baseurl=http://mirrors.ocf.berkeley.edu/centos|' /etc/yum.repos.d/*.repo
-       yum -y update
-
-       yum -y install wget unzip socat java-11-openjdk-headless
-       sed -i 's|#networkaddress.cache.ttl=-1|networkaddress.cache.ttl=10|' /usr/lib/jvm/jre/lib/security/java.security
-
-       # Set up mysql
-       wget -q http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm && \
-               rpm -ivh mysql-community-release-el7-5.noarch.rpm && \
-               rm -f mysql-community-release-el7-5.noarch.rpm
-       yum -y update
-       yum -y install mysql-server
-       mysql_install_db --user=onap --datadir=/var/lib/mysql
-       chown onap:onap -R /var/run/mysqld
-       chmod g+s /var/run/mysqld
-       setfacl -d --set u:onap:rwx /var/run/mysqld
-       chown onap:onap /var/log/mysqld.log
-       chmod g+s /var/log/mysqld.log
-       chown onap:onap -R /var/lib/mysql-files
-       chmod g+s /var/lib/mysql-files
-       setfacl -d --set u:onap:rwx /var/lib/mysql-files
-       chown onap:onap /etc/my.cnf
+                 chown onap:onap -R /service
 }
 
 set_up_tomcat(){
@@ -61,9 +35,6 @@ clean_sf_cache(){
        yum clean all
 }
 
-add_user
-set_up_mysql_jdk
-wait
 set_up_tomcat
 wait
 clean_sf_cache