blob: 27e9aa3fb3b70163c949f79ab8de07637a4f9909 [file] [log] [blame]
kishore328996f2017-09-08 17:15:42 -05001# Environment settings
2# used by docker-compose AND by other shell scripts
kishore328996f2017-09-08 17:15:42 -05003# Host directory with config files
kishore6eebdba2017-10-03 11:12:57 -05004
kishore328996f2017-09-08 17:15:42 -05005# Following are ALSO used in demo/boot/portal_vm_init.sh
CHINTAMANI68e98362018-04-10 18:56:38 -04006EP_IMG_NAME=onap/portal-app
7SDK_IMG_NAME=onap/portal-sdk
kishorebbca0cf2017-10-09 16:59:38 -05008DB_IMG_NAME=onap/portal-db
CHINTAMANI68e98362018-04-10 18:56:38 -04009CDR_IMG_NAME=onap/music/cassandra_music
10ZK_IMG_NAME=zookeeper
kishorebbca0cf2017-10-09 16:59:38 -050011WMS_IMG_NAME=onap/portal-wms
CHINTAMANI68e98362018-04-10 18:56:38 -040012# Deployed with portal; built elsewhere
kishore6eebdba2017-10-03 11:12:57 -050013CLI_IMG_NAME=onap/cli
kishore328996f2017-09-08 17:15:42 -050014
kishore6eebdba2017-10-03 11:12:57 -050015# Tag all images with this
CHINTAMANI68e98362018-04-10 18:56:38 -040016DOCKER_IMAGE_VERSION=2.1-STAGING-latest
kishore6eebdba2017-10-03 11:12:57 -050017CLI_DOCKER_VERSION=1.1-STAGING-latest
CHINTAMANI68e98362018-04-10 18:56:38 -040018CDR_IMAGE_VERSION=latest
19ZK_IMAGE_VERSION=3.4
kishorebbca0cf2017-10-09 16:59:38 -050020NEXUS_DOCKER_REPO=nexus3.onap.org:10003
kishore92d70d62017-10-11 14:51:31 -050021
CHINTAMANI68e98362018-04-10 18:56:38 -040022# This is used during builds and in docker-compose;
23# it is never published to the ONAP registry.
24PORTAL_TAG=beijing
25
26# Name of directory in apps container (NOT host)
27WEBAPPS_DIR=/opt/apache-tomcat-8.0.37/webapps
28
29# Required settings with default values.
30# Export shell environment variables on ALL hosts.
31LOGS_DIR=./logs
32PROPS_DIR=./properties
kishore92d70d62017-10-11 14:51:31 -050033
34# Optional settings with no defaults.
35EXTRA_HOST_IP=""
36EXTRA_HOST_NAME=""
37# Export shell environment variables on hosts with no DNS;
38# a line is added to docker container's /etc/hosts.
39# For example:
40#EXTRA_HOST_IP="-i ${HOST_IP}"
41#EXTRA_HOST_NAME="-n portal.api.simpledemo.openecomp.org"
42