blob: 02d258f89fe1a9fdb048985fcdec9e2035714af8 [file] [log] [blame]
Instrumental32cdd552018-07-19 13:29:32 -05001#!/bin/bash
Instrumental7a1817b2018-11-05 11:11:15 -06002#########
3# ============LICENSE_START====================================================
4# org.onap.aaf
5# ===========================================================================
6# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
7# ===========================================================================
8# Licensed under the Apache License, Version 2.0 (the "License");
9# you may not use this file except in compliance with the License.
10# You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS,
16# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17# See the License for the specific language governing permissions and
18# limitations under the License.
19# ============LICENSE_END====================================================
20#
21
Instrumental32cdd552018-07-19 13:29:32 -050022. ./d.props
23
Instrumental94053612018-10-08 11:27:18 -050024DOCKER=${DOCKER:=docker}
Instrumentale2fa0e62019-02-07 11:09:32 -060025# if something, may not want CASS attached all the tim
26LINKS="--link $CASSANDRA_DOCKER"
27
Instrumentalab502672018-08-20 14:31:35 -050028function run_it() {
Instrumental628b7102019-02-15 19:40:04 -060029 if [ -n "${DUSER}" ]; then
30 USER_LINE="--user ${DUSER}"
31 fi
Instrumental94053612018-10-08 11:27:18 -050032 $DOCKER run $@ \
Instrumental628b7102019-02-15 19:40:04 -060033 $USER_LINE \
Instrumental94053612018-10-08 11:27:18 -050034 -v "aaf_config:$CONF_ROOT_DIR" \
Instrumentalca788dc2018-11-03 14:38:21 -050035 -v "aaf_status:/opt/app/aaf/status" \
Instrumentale2fa0e62019-02-07 11:09:32 -060036 $LINKS \
Instrumental12414fe2019-01-22 10:27:32 -060037 --env aaf_locator_container=docker \
Instrumental27afb022019-02-07 16:36:56 -060038 --env aaf_locator_container_ns=${NAMESPACE} \
Instrumental12414fe2019-01-22 10:27:32 -060039 --env aaf_locator_fqdn=${HOSTNAME} \
40 --env aaf_locate_url=https://aaf-locate:8095 \
Instrumental27afb022019-02-07 16:36:56 -060041 --env aaf_locator_public_hostname=${HOSTNAME} \
Instrumental32cdd552018-07-19 13:29:32 -050042 --env AAF_ENV=${AAF_ENV} \
Instrumental32cdd552018-07-19 13:29:32 -050043 --env LATITUDE=${LATITUDE} \
44 --env LONGITUDE=${LONGITUDE} \
Instrumental196000b2018-10-05 19:30:59 -050045 --env CASSANDRA_CLUSTER=${CASSANDRA_CLUSTER} \
46 --env CASSANDRA_USER=${CASSANDRA_USER} \
47 --env CASSANDRA_PASSWORD=${CASSANDRA_PASSWORD} \
48 --env CASSANDRA_PORT=${CASSANDRA_PORT} \
Instrumental32cdd552018-07-19 13:29:32 -050049 --name aaf_config_$USER \
Instrumentale44d2f72018-08-16 17:22:45 -050050 $PREFIX${ORG}/${PROJECT}/aaf_config:${VERSION} \
Instrumental12414fe2019-01-22 10:27:32 -060051 bash -c "bash /opt/app/aaf_config/bin/agent.sh $PARAMS"
Instrumentalab502672018-08-20 14:31:35 -050052}
53
Instrumental12414fe2019-01-22 10:27:32 -060054PARAMS=$@
Instrumentalca788dc2018-11-03 14:38:21 -050055case "$1" in
56 bash)
Instrumental12414fe2019-01-22 10:27:32 -060057 PARAMS="&& cd /opt/app/osaaf/local && exec bash"
58 run_it -it --rm
Instrumentalca788dc2018-11-03 14:38:21 -050059 ;;
Instrumental12414fe2019-01-22 10:27:32 -060060 taillog)
Instrumentalca788dc2018-11-03 14:38:21 -050061 run_it -it --rm
62 ;;
63 *)
64 run_it --rm
65 ;;
66esac
Instrumentalab502672018-08-20 14:31:35 -050067