[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 # Directory on host in where database data will be stored
18 HOST_STORAGE_DIR="/var/lib/mariadb"
19 # Container name
20 CONTAINER_NAME="akraino-validation-mariadb"
21 # Container input variables
22 MARIADB_ROOT_PASSWORD=""
23 UI_ADMIN_PASSWORD=""
24 UI_AKRAINO_PASSWORD=""
25 # Image data
26 REGISTRY=akraino
27 NAME=validation
28 TAG_PRE=mariadb
29 TAG_VER=latest
30 MARIADB_HOST_PORT=3307
31
32 for ARGUMENT in "$@"
33 do
34     KEY=$(echo $ARGUMENT | cut -f1 -d=)
35     VALUE=$(echo $ARGUMENT | cut -f2 -d=)
36     case "$KEY" in
37             REGISTRY)              REGISTRY=${VALUE} ;;
38             NAME)    NAME=${VALUE} ;;
39             TAG_VER)    TAG_VER=${VALUE} ;;
40             TAG_PRE)    TAG_PRE=${VALUE} ;;
41             MARIADB_ROOT_PASSWORD)    MARIADB_ROOT_PASSWORD=${VALUE} ;;
42             CONTAINER_NAME)    CONTAINER_NAME=${VALUE} ;;
43             MARIADB_HOST_PORT)    MARIADB_HOST_PORT=${VALUE} ;;
44             UI_ADMIN_PASSWORD)    UI_ADMIN_PASSWORD=${VALUE} ;;
45             UI_AKRAINO_PASSWORD)    UI_AKRAINO_PASSWORD=${VALUE} ;;
46             *)
47     esac
48 done
49
50 if [ -z "$MARIADB_ROOT_PASSWORD" ]
51   then
52     echo "ERROR: You must specify the mariadb database root password"
53     exit 1
54 fi
55
56 if [ -z "$UI_ADMIN_PASSWORD" ]
57   then
58     echo "ERROR: You must specify the password of the UI admin user"
59     exit 1
60 fi
61
62 if [ -z "$UI_AKRAINO_PASSWORD" ]
63   then
64     echo "ERROR: You must specify the password for the UI akraino user"
65     exit 1
66 fi
67
68 IMAGE="$REGISTRY"/"$NAME":"$TAG_PRE"-"$TAG_VER"
69 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
70 sleep 10
71 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/akraino-blueprint_validation_db.sql; continue=`ps aux | grep mysql` ; while [ -z "$continue" ]; do continue=`ps aux | grep mysql`; sleep 5; done ; sleep 10 ;'