Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 1 | # 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 |
| 6 | EP_IMG_NAME=onap/portal-app |
| 7 | SDK_IMG_NAME=onap/portal-sdk |
| 8 | DB_IMG_NAME=onap/portal-db |
| 9 | CDR_IMG_NAME=onap/music/cassandra_music |
| 10 | ZK_IMG_NAME=zookeeper |
| 11 | WMS_IMG_NAME=onap/portal-wms |
| 12 | # Deployed with portal; built elsewhere |
| 13 | CLI_IMG_NAME=onap/cli |
| 14 | |
| 15 | # Tag all images with this |
umry8364 | 6bd91c7 | 2019-10-01 11:19:41 +0200 | [diff] [blame] | 16 | DOCKER_IMAGE_VERSION=2.6-STAGING-latest |
| 17 | CLI_DOCKER_VERSION=3.0-STAGING-latest |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 18 | CDR_IMAGE_VERSION=latest |
| 19 | ZK_IMAGE_VERSION=3.4 |
| 20 | NEXUS_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. |
umry8364 | 6bd91c7 | 2019-10-01 11:19:41 +0200 | [diff] [blame] | 24 | PORTAL_TAG=elalto |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 25 | |
| 26 | # Name of directory in apps container (NOT host) |
| 27 | WEBAPPS_DIR=/opt/apache-tomcat-8.0.37/webapps |
| 28 | |
| 29 | # Required settings with default values. |
| 30 | # Export shell environment variables on ALL hosts. |
| 31 | LOGS_DIR=./logs |
| 32 | PROPS_DIR=./properties |
| 33 | |
| 34 | # Optional settings with no defaults. |
| 35 | EXTRA_HOST_IP="" |
| 36 | EXTRA_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" |