blob: 2cd5afab20bf059b89fdb3fe84714987f2953182 [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001# Environment settings
2# used by docker-compose AND by other shell scripts
3# Host directory with config files
4
5# Following are ALSO used in demo/boot/portal_vm_init.sh
6EP_IMG_NAME=onap/portal-app
7SDK_IMG_NAME=onap/portal-sdk
8DB_IMG_NAME=onap/portal-db
9CDR_IMG_NAME=onap/music/cassandra_music
10ZK_IMG_NAME=zookeeper
11WMS_IMG_NAME=onap/portal-wms
12# Deployed with portal; built elsewhere
13CLI_IMG_NAME=onap/cli
14
15# Tag all images with this
umry83646bd91c72019-10-01 11:19:41 +020016DOCKER_IMAGE_VERSION=2.6-STAGING-latest
17CLI_DOCKER_VERSION=3.0-STAGING-latest
Gary Wu9abb61c2018-09-27 10:38:50 -070018CDR_IMAGE_VERSION=latest
19ZK_IMAGE_VERSION=3.4
20NEXUS_DOCKER_REPO=nexus3.onap.org:10003
21
22# This is used during builds and in docker-compose;
23# it is never published to the ONAP registry.
umry83646bd91c72019-10-01 11:19:41 +020024PORTAL_TAG=elalto
Gary Wu9abb61c2018-09-27 10:38:50 -070025
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
33
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"