Public and Private Locate entries
[aaf/authz.git] / auth / docker / aaf.sh
1 #!/bin/bash
2 #########
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
22 . ./d.props
23
24 DOCKER=${DOCKER:=docker}
25 function run_it() {
26   $DOCKER run $@ \
27     -v "aaf_config:$CONF_ROOT_DIR" \
28     -v "aaf_status:/opt/app/aaf/status" \
29     --env aaf_locator_container=docker \
30     --env aaf_locator_fqdn=${HOSTNAME} \
31     --env aaf_locate_url=https://aaf-locate:8095 \
32     --env AAF_ENV=${AAF_ENV} \
33     --env LATITUDE=${LATITUDE} \
34     --env LONGITUDE=${LONGITUDE} \
35     --env CASSANDRA_CLUSTER=${CASSANDRA_CLUSTER} \
36     --env CASSANDRA_USER=${CASSANDRA_USER} \
37     --env CASSANDRA_PASSWORD=${CASSANDRA_PASSWORD} \
38     --env CASSANDRA_PORT=${CASSANDRA_PORT} \
39     --name aaf_config_$USER \
40     $PREFIX${ORG}/${PROJECT}/aaf_config:${VERSION} \
41     bash -c "bash /opt/app/aaf_config/bin/agent.sh $PARAMS"
42 }
43
44 PARAMS=$@
45 case "$1" in 
46   bash)
47     PARAMS="&& cd /opt/app/osaaf/local && exec bash"
48     run_it -it --rm  
49     ;;
50   taillog)
51     run_it -it --rm 
52     ;;
53   *)
54     run_it --rm 
55     ;;
56 esac
57