From 6927c37a31ef5a874e923a4fe02feb1392a7dfb4 Mon Sep 17 00:00:00 2001 From: Sudhakar Reddy Date: Mon, 13 Aug 2018 21:13:56 +0530 Subject: Adoption of base framework code for azure plugin This is the initial code which is created by referring to vmware plugin.The logging and containerization features are readily available. Change-Id: I3371d5f0671c2252edb1da7ea55f1f89ea27b3aa Issue-ID: MULTICLOUD-308 Signed-off-by: Sudhakar Reddy --- azure/docker/instance-config.sh | 48 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 azure/docker/instance-config.sh (limited to 'azure/docker/instance-config.sh') diff --git a/azure/docker/instance-config.sh b/azure/docker/instance-config.sh new file mode 100644 index 0000000..6500d03 --- /dev/null +++ b/azure/docker/instance-config.sh @@ -0,0 +1,48 @@ +#!/bin/bash +# Copyright (c) 2018 Amdocs +# +# 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. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Configure MSB IP address +MSB_IP=`echo $MSB_ADDR | cut -d: -f 1` +MSB_PORT=`echo $MSB_PORT | cut -d: -f 2` +sed -i "s|MSB_SERVICE_IP.*|MSB_SERVICE_IP = '$MSB_IP'|" azure/azure/pub/config/config.py +sed -i "s|MSB_SERVICE_PORT.*|MSB_SERVICE_PORT = '$MSB_PORT'|" azure/azure/pub/config/config.py +sed -i "s|DB_NAME.*|DB_NAME = 'inventory'|" azure/azure/pub/config/config.py +sed -i "s|DB_USER.*|DB_USER = 'inventory'|" azure/azure/pub/config/config.py +sed -i "s|DB_PASSWD.*|DB_PASSWD = 'inventory'|" azure/azure/pub/config/config.py +sed -i "s|\"ip\": \".*\"|\"ip\": \"$SERVICE_IP\"|" azure/azure/pub/config/config.py + +# Configure MYSQL +if [ -z "$MYSQL_ADDR" ]; then + export MYSQL_IP=`hostname -i` + export MYSQL_PORT=3306 + export MYSQL_ADDR=$MYSQL_IP:$MYSQL_PORT +else + MYSQL_IP=`echo $MYSQL_ADDR | cut -d: -f 1` + MYSQL_PORT=`echo $MYSQL_ADDR | cut -d: -f 2` +fi +echo "MYSQL_ADDR=$MYSQL_ADDR" +sed -i "s|DB_IP.*|DB_IP = '$MYSQL_IP'|" azure/azure/pub/config/config.py +sed -i "s|DB_PORT.*|DB_PORT = $MYSQL_PORT|" azure/azure/pub/config/config.py + +cat azure/azure/pub/config/config.py + +sed -i "s/sip=.*/sip=$SERVICE_IP/g" azure/run.sh +sed -i "s/sip=.*/sip=$SERVICE_IP/g" azure/stop.sh + +# Create log directory +logDir="/var/log/onap/multicloud/azure" +if [ ! -x $logDir ]; then + mkdir -p $logDir +fi -- cgit 1.2.3-korg