Missing Licenses
[aaf/authz.git] / auth / auth-cass / docker / drun.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 # Pull in AAF Env Variables from AAF install
22 if [ -e ../../docker/d.props ]; then
23   . ../../docker/d.props
24 fi
25 DOCKER=${DOCKER:-docker}
26
27 if [ "$1" = "publish" ]; then
28   PUBLISH='--publish 9042:9042 '
29 fi
30
31 if [ "$($DOCKER volume ls | grep aaf_cass_data)" = "" ]; then
32   $DOCKER volume create aaf_cass_data
33   echo "Created Cassandra Volume aaf_cass_data"
34 fi
35
36 # Optional mount instead of v
37 #    --mount 'type=volume,src=aaf_cass_data,dst=/var/lib/cassandra,volume-driver=local' \
38 if [ "`$DOCKER ps -a | grep aaf_cass`" == "" ]; then
39   echo "starting Cass from 'run'"
40   # NOTE: These HEAP Sizes are minimal. Not set for full organizations.
41   $DOCKER run \
42     --name aaf_cass \
43     -e HEAP_NEWSIZE=512M \
44     -e MAX_HEAP_SIZE=1024M \
45     -e CASSANDRA_DC=dc1 \
46     -e CASSANDRA_CLUSTER_NAME=osaaf \
47     -v "aaf_cass_data:/var/lib/cassandra" \
48     -v "aaf_status:/opt/app/aaf/status" \
49     $PUBLISH \
50     -d ${PREFIX}${ORG}/${PROJECT}/aaf_cass:${VERSION} "onap"
51 else 
52   $DOCKER start aaf_cass
53 fi