blob: 9004f26f0b6888c973e906fc3d5679da0710aff3 [file] [log] [blame]
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -04001# Environment settings
2# used by docker-compose AND by other shell scripts
st782s21a87612018-01-30 17:29:36 -05003# The name ".env" is required by docker-compose
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -04004
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -04005# Following are ALSO used in demo/boot/portal_vm_init.sh
st782s21a87612018-01-30 17:29:36 -05006EP_IMG_NAME=onap/portal-app
7SDK_IMG_NAME=onap/portal-sdk
Christopher Lott (cl778h)0acb4fc2017-10-02 12:09:24 -04008DB_IMG_NAME=onap/portal-db
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -04009CDR_IMG_NAME=onap/music/cassandra_music
10ZK_IMG_NAME=zookeeper
Christopher Lott (cl778h)0acb4fc2017-10-02 12:09:24 -040011WMS_IMG_NAME=onap/portal-wms
12# Deployed with portal; built elsewhere
13CLI_IMG_NAME=onap/cli
Kanagaraj Manickam k00365106bfbe3352017-08-30 09:33:23 +053014
st782s21a87612018-01-30 17:29:36 -050015# This is the first portion of the Docker image tag
16# that is published to the ONAP registry.
17PORTAL_VERSION=2.1
18
19# This is used during builds and in docker-compose;
20# it is never published to the ONAP registry.
21PORTAL_TAG=beijing
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -040022
Christopher Lott (cl778h)0acb4fc2017-10-02 12:09:24 -040023# Name of directory in apps container (NOT host)
24WEBAPPS_DIR=/opt/apache-tomcat-8.0.37/webapps
25
Christopher Lott (cl778h)6a4a3492017-10-10 15:54:38 -040026# Required settings with default values.
27# Export shell environment variables on ALL hosts.
28LOGS_DIR=./logs
Kishore Reddy, Gujja (kg811t)6acafbc2018-04-03 11:29:57 -040029PROPS_DIR=./properties_simpledemo
Christopher Lott (cl778h)6a4a3492017-10-10 15:54:38 -040030
31# Optional settings with no defaults.
32EXTRA_HOST_IP=""
33EXTRA_HOST_NAME=""
34# Export shell environment variables on hosts with no DNS;
35# a line is added to docker container's /etc/hosts.
36# For example:
st782s21a87612018-01-30 17:29:36 -050037#EXTRA_HOST_IP="-i 10.11.12.13"
kg811t3aa28e92018-02-08 13:25:08 -050038#EXTRA_HOST_NAME="-n portal.api.simpledemo.onap.org"