blob: 27e9aa3fb3b70163c949f79ab8de07637a4f9909 [file] [log] [blame]
kishore0fdcc612017-10-09 08:19:36 -05001# Environment settings
2# used by docker-compose AND by other shell scripts
3# Host directory with config files
4
kishore0fdcc612017-10-09 08:19:36 -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
kishore0fdcc612017-10-09 08:19:36 -05008DB_IMG_NAME=onap/portal-db
CHINTAMANI68e98362018-04-10 18:56:38 -04009CDR_IMG_NAME=onap/music/cassandra_music
10ZK_IMG_NAME=zookeeper
kishore0fdcc612017-10-09 08:19:36 -050011WMS_IMG_NAME=onap/portal-wms
CHINTAMANI68e98362018-04-10 18:56:38 -040012# Deployed with portal; built elsewhere
kishore0fdcc612017-10-09 08:19:36 -050013CLI_IMG_NAME=onap/cli
14
15# Tag all images with this
CHINTAMANI68e98362018-04-10 18:56:38 -040016DOCKER_IMAGE_VERSION=2.1-STAGING-latest
kishore0fdcc612017-10-09 08:19:36 -050017CLI_DOCKER_VERSION=1.1-STAGING-latest
CHINTAMANI68e98362018-04-10 18:56:38 -040018CDR_IMAGE_VERSION=latest
19ZK_IMAGE_VERSION=3.4
kishore0fdcc612017-10-09 08:19:36 -050020NEXUS_DOCKER_REPO=nexus3.onap.org:10003
kishoreb24e8412017-10-12 15:44:40 -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
kishoreb24e8412017-10-12 15:44:40 -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