Merge "[RECV-94] Separate docker/robot invoking"
[validation.git] / docker / mariadb / deploy.sh
1 #!/bin/bash
2 #
3 # Copyright (c) 2019 AT&T Intellectual Property.  All other rights reserved.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Use this script if the persistent storage does not exist
18
19 # Directory on host in where database data will be stored
20 HOST_STORAGE_DIR="/var/lib/mariadb"
21 # Container name
22 CONTAINER_NAME="akraino-validation-mariadb"
23 # Container input variables
24 MARIADB_ROOT_PASSWORD=""
25 UI_ADMIN_PASSWORD=""
26 UI_AKRAINO_PASSWORD=""
27 # Image data
28 REGISTRY=akraino
29 NAME=validation
30 TAG_PRE=mariadb
31 TAG_VER=latest
32 MARIADB_HOST_PORT=3307
33
34 for ARGUMENT in "$@"
35 do
36     KEY=$(echo $ARGUMENT | cut -f1 -d=)
37     VALUE=$(echo $ARGUMENT | cut -f2 -d=)
38     case "$KEY" in
39             REGISTRY)              REGISTRY=${VALUE} ;;
40             NAME)    NAME=${VALUE} ;;
41             TAG_VER)    TAG_VER=${VALUE} ;;
42             TAG_PRE)    TAG_PRE=${VALUE} ;;
43             MARIADB_ROOT_PASSWORD)    MARIADB_ROOT_PASSWORD=${VALUE} ;;
44             CONTAINER_NAME)    CONTAINER_NAME=${VALUE} ;;
45             MARIADB_HOST_PORT)    MARIADB_HOST_PORT=${VALUE} ;;
46             UI_ADMIN_PASSWORD)    UI_ADMIN_PASSWORD=${VALUE} ;;
47             UI_AKRAINO_PASSWORD)    UI_AKRAINO_PASSWORD=${VALUE} ;;
48             *)
49     esac
50 done
51
52 if [ -z "$MARIADB_ROOT_PASSWORD" ]
53   then
54     echo "ERROR: You must specify the mariadb database root password"
55     exit 1
56 fi
57
58 if [ -z "$UI_ADMIN_PASSWORD" ]
59   then
60     echo "ERROR: You must specify the password of the UI admin user"
61     exit 1
62 fi
63
64 if [ -z "$UI_AKRAINO_PASSWORD" ]
65   then
66     echo "ERROR: You must specify the password for the UI akraino user"
67     exit 1
68 fi
69
70 IMAGE="$REGISTRY"/"$NAME":"$TAG_PRE"-"$TAG_VER"
71 docker run --detach --name $CONTAINER_NAME --publish $MARIADB_HOST_PORT:3306 --volume $HOST_STORAGE_DIR:/var/lib/mysql -v "/$(pwd)/mariadb.conf:/etc/mysql/conf.d/my.cnf" -e MYSQL_ROOT_PASSWORD="$MARIADB_ROOT_PASSWORD" -e UI_ADMIN_PASSWORD="$UI_ADMIN_PASSWORD" -e UI_AKRAINO_PASSWORD="$UI_AKRAINO_PASSWORD" $IMAGE
72 sleep 10
73 docker exec $CONTAINER_NAME /bin/bash -c 'sed -i 's/admin_password/'"$UI_ADMIN_PASSWORD"'/g' /docker-entrypoint-initdb.d/EcompSdkDMLMySql_2_4_OS.sql ; sed -i 's/akraino_password/'"$UI_AKRAINO_PASSWORD"'/g' /docker-entrypoint-initdb.d/EcompSdkDMLMySql_2_4_OS.sql; continue=`ps aux | grep mysql` ; while [ -z "$continue" ]; do continue=`ps aux | grep mysql`; sleep 5; done ; sleep 10 ;'