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. |
statta | e97570d | 2019-04-16 14:58:13 -0400 | [diff] [blame] | 17 | PORTAL_VERSION=2.5.0 |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 18 | |
| 19 | # This is used during builds and in docker-compose; |
| 20 | # it is never published to the ONAP registry. |
Saravanan, Madheswaran | ee9c04f | 2018-08-28 12:34:01 -0400 | [diff] [blame] | 21 | PORTAL_TAG=casablanca |
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 |
Kishore Reddy, Gujja (kg811t) | a59bc3e | 2018-09-25 13:59:56 -0400 | [diff] [blame] | 25 | TOMCAT_DIR=/opt/apache-tomcat-8.0.37 |
| 26 | |
| 27 | # Certs |
| 28 | TOMCAT_KEY=keystoreONAP.keystore |
| 29 | TOMCAT_TRUST=truststoreONAPall.jks |
| 30 | CERT_PWD=changeit |
| 31 | |
Christopher Lott (cl778h) | 0acb4fc | 2017-10-02 12:09:24 -0400 | [diff] [blame] | 32 | |
Christopher Lott (cl778h) | 6a4a349 | 2017-10-10 15:54:38 -0400 | [diff] [blame] | 33 | # Required settings with default values. |
| 34 | # Export shell environment variables on ALL hosts. |
| 35 | LOGS_DIR=./logs |
Kishore Reddy, Gujja (kg811t) | 6acafbc | 2018-04-03 11:29:57 -0400 | [diff] [blame] | 36 | PROPS_DIR=./properties_simpledemo |
Christopher Lott (cl778h) | 6a4a349 | 2017-10-10 15:54:38 -0400 | [diff] [blame] | 37 | |
| 38 | # Optional settings with no defaults. |
| 39 | EXTRA_HOST_IP="" |
| 40 | EXTRA_HOST_NAME="" |
| 41 | # Export shell environment variables on hosts with no DNS; |
| 42 | # a line is added to docker container's /etc/hosts. |
| 43 | # For example: |
st782s | 21a8761 | 2018-01-30 17:29:36 -0500 | [diff] [blame] | 44 | #EXTRA_HOST_IP="-i 10.11.12.13" |
kg811t | 3aa28e9 | 2018-02-08 13:25:08 -0500 | [diff] [blame] | 45 | #EXTRA_HOST_NAME="-n portal.api.simpledemo.onap.org" |