Instrumental | 32cdd55 | 2018-07-19 13:29:32 -0500 | [diff] [blame] | 1 | #!/bin/bash |
Instrumental | 7a1817b | 2018-11-05 11:11:15 -0600 | [diff] [blame] | 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 | |
Instrumental | 32cdd55 | 2018-07-19 13:29:32 -0500 | [diff] [blame] | 22 | . ./d.props |
| 23 | |
Instrumental | 9405361 | 2018-10-08 11:27:18 -0500 | [diff] [blame] | 24 | DOCKER=${DOCKER:=docker} |
Instrumental | ab50267 | 2018-08-20 14:31:35 -0500 | [diff] [blame] | 25 | function run_it() { |
Instrumental | 9405361 | 2018-10-08 11:27:18 -0500 | [diff] [blame] | 26 | $DOCKER run $@ \ |
| 27 | -v "aaf_config:$CONF_ROOT_DIR" \ |
Instrumental | ca788dc | 2018-11-03 14:38:21 -0500 | [diff] [blame] | 28 | -v "aaf_status:/opt/app/aaf/status" \ |
Instrumental | 32cdd55 | 2018-07-19 13:29:32 -0500 | [diff] [blame] | 29 | --add-host="$HOSTNAME:$HOST_IP" \ |
| 30 | --add-host="aaf.osaaf.org:$HOST_IP" \ |
Instrumental | 54883b4 | 2018-09-25 07:56:54 -0500 | [diff] [blame] | 31 | --env HOSTNAME=${HOSTNAME} \ |
Instrumental | 32cdd55 | 2018-07-19 13:29:32 -0500 | [diff] [blame] | 32 | --env AAF_ENV=${AAF_ENV} \ |
| 33 | --env AAF_REGISTER_AS=${AAF_REGISTER_AS} \ |
Instrumental | 93871ff | 2018-10-15 07:37:28 -0500 | [diff] [blame] | 34 | --env AAF_LOCATOR_AS=${AAF_LOCATOR_AS} \ |
Instrumental | 32cdd55 | 2018-07-19 13:29:32 -0500 | [diff] [blame] | 35 | --env LATITUDE=${LATITUDE} \ |
| 36 | --env LONGITUDE=${LONGITUDE} \ |
Instrumental | 196000b | 2018-10-05 19:30:59 -0500 | [diff] [blame] | 37 | --env CASS_HOST=${CASS_HOST} \ |
| 38 | --env CASSANDRA_CLUSTER=${CASSANDRA_CLUSTER} \ |
| 39 | --env CASSANDRA_USER=${CASSANDRA_USER} \ |
| 40 | --env CASSANDRA_PASSWORD=${CASSANDRA_PASSWORD} \ |
| 41 | --env CASSANDRA_PORT=${CASSANDRA_PORT} \ |
Instrumental | 32cdd55 | 2018-07-19 13:29:32 -0500 | [diff] [blame] | 42 | --name aaf_config_$USER \ |
Instrumental | e44d2f7 | 2018-08-16 17:22:45 -0500 | [diff] [blame] | 43 | $PREFIX${ORG}/${PROJECT}/aaf_config:${VERSION} \ |
Instrumental | ab50267 | 2018-08-20 14:31:35 -0500 | [diff] [blame] | 44 | /bin/bash $PARAMS |
| 45 | } |
| 46 | |
Instrumental | ab50267 | 2018-08-20 14:31:35 -0500 | [diff] [blame] | 47 | PARAMS="$@" |
Instrumental | ca788dc | 2018-11-03 14:38:21 -0500 | [diff] [blame] | 48 | case "$1" in |
| 49 | bash) |
| 50 | run_it -it --rm |
| 51 | ;; |
| 52 | -it) |
| 53 | shift |
| 54 | PARAMS="$@" |
| 55 | run_it -it --rm |
| 56 | ;; |
| 57 | *) |
| 58 | run_it --rm |
| 59 | ;; |
| 60 | esac |
Instrumental | ab50267 | 2018-08-20 14:31:35 -0500 | [diff] [blame] | 61 | |