Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 1 | # Environment settings |
| 2 | # used by docker-compose AND by other shell scripts |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 3 | # The name ".env" is required by docker-compose |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 4 | |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 5 | # Following are ALSO used in demo/boot/portal_vm_init.sh |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 6 | EP_IMG_NAME=onap/portal-app |
| 7 | SDK_IMG_NAME=onap/portal-sdk |
Christopher Lott (cl778h) | 0acb4fc | 2017-10-02 12:09:24 -0400 | [diff] [blame] | 8 | DB_IMG_NAME=onap/portal-db |
Kishore Reddy, Gujja (kg811t) | 4ee8967 | 2018-03-20 17:15:25 -0400 | [diff] [blame] | 9 | CDR_IMG_NAME=onap/music/cassandra_music |
| 10 | ZK_IMG_NAME=zookeeper |
Christopher Lott (cl778h) | 0acb4fc | 2017-10-02 12:09:24 -0400 | [diff] [blame] | 11 | WMS_IMG_NAME=onap/portal-wms |
| 12 | # Deployed with portal; built elsewhere |
| 13 | CLI_IMG_NAME=onap/cli |
Kanagaraj Manickam k00365106 | bfbe335 | 2017-08-30 09:33:23 +0530 | [diff] [blame] | 14 | |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 15 | # This is the first portion of the Docker image tag |
| 16 | # that is published to the ONAP registry. |
| 17 | PORTAL_VERSION=2.1 |
| 18 | |
| 19 | # This is used during builds and in docker-compose; |
| 20 | # it is never published to the ONAP registry. |
| 21 | PORTAL_TAG=beijing |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 22 | |
Christopher Lott (cl778h) | 0acb4fc | 2017-10-02 12:09:24 -0400 | [diff] [blame] | 23 | # Name of directory in apps container (NOT host) |
| 24 | WEBAPPS_DIR=/opt/apache-tomcat-8.0.37/webapps |
| 25 | |
Christopher Lott (cl778h) | 6a4a349 | 2017-10-10 15:54:38 -0400 | [diff] [blame] | 26 | # Required settings with default values. |
| 27 | # Export shell environment variables on ALL hosts. |
| 28 | LOGS_DIR=./logs |
Kishore Reddy, Gujja (kg811t) | 6acafbc | 2018-04-03 11:29:57 -0400 | [diff] [blame^] | 29 | PROPS_DIR=./properties_simpledemo |
Christopher Lott (cl778h) | 6a4a349 | 2017-10-10 15:54:38 -0400 | [diff] [blame] | 30 | |
| 31 | # Optional settings with no defaults. |
| 32 | EXTRA_HOST_IP="" |
| 33 | EXTRA_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: |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 37 | #EXTRA_HOST_IP="-i 10.11.12.13" |
kg811t | 3aa28e9 | 2018-02-08 13:25:08 -0500 | [diff] [blame] | 38 | #EXTRA_HOST_NAME="-n portal.api.simpledemo.onap.org" |