blob: 0534141111dcf160c3b955d66a17ab5ab2e57ecf [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
Kotta, Shireesha (sk434m)b75f35b2019-06-13 14:41:15 -04005# Dockerfile names. To skip building one or more docker images,
6# change dockerfile name to "skip"
7PORTAL_DOCKERFILE=Dockerfile.portal
8SDK_DOCKERFILE=Dockerfile.sdk
9DB_DOCKERFILE=Dockerfile.mariadb
10WMS_DOCKERFILE=Dockerfile.wms
11# These are FE only and BE only docker images. Change to Dockerfile.fe and Dockerfile.be to enable.
12FE_DOCKERFILE=skip
13BE_DOCKERFILE=skip
14
15# Relative directories and filenames for builds
16SDK_APP_DIR=sdk/ecomp-sdk/epsdk-app-os
17SDK_WAR_DIR=sdk/ecomp-sdk/epsdk-app-os/target
18SDK_WAR_FILE=epsdk-app-os.war
19BE_WAR_DIR=ecomp-portal-BE-os/target
20BE_WAR_FILE=portal-be-os.war
Sudarshan Kumar8e83c252020-02-18 16:16:26 +053021FE_DIR=portal-FE-os/dist/public
Kotta, Shireesha (sk434m)b75f35b2019-06-13 14:41:15 -040022WIDGET_MS_JAR_DIR=ecomp-portal-widget-ms/widget-ms/target
23WIDGET_MS_JAR_FILE=widget-ms.jar
24
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -040025# Following are ALSO used in demo/boot/portal_vm_init.sh
st782s21a87612018-01-30 17:29:36 -050026EP_IMG_NAME=onap/portal-app
27SDK_IMG_NAME=onap/portal-sdk
Kotta, Shireesha (sk434m)b75f35b2019-06-13 14:41:15 -040028FE_IMG_NAME=onap/portal-fe
29BE_IMG_NAME=onap/portal-be
Christopher Lott (cl778h)0acb4fc2017-10-02 12:09:24 -040030DB_IMG_NAME=onap/portal-db
Kotta, Shireesha (sk434m)b75f35b2019-06-13 14:41:15 -040031WMS_IMG_NAME=onap/portal-wms
32
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -040033CDR_IMG_NAME=onap/music/cassandra_music
34ZK_IMG_NAME=zookeeper
Kotta, Shireesha (sk434m)b75f35b2019-06-13 14:41:15 -040035
Christopher Lott (cl778h)0acb4fc2017-10-02 12:09:24 -040036# Deployed with portal; built elsewhere
37CLI_IMG_NAME=onap/cli
Kanagaraj Manickam k00365106bfbe3352017-08-30 09:33:23 +053038
st782s21a87612018-01-30 17:29:36 -050039# This is the first portion of the Docker image tag
40# that is published to the ONAP registry.
Sandeep Shahe7463272020-08-27 17:23:57 -050041PORTAL_VERSION=3.4.0
st782s21a87612018-01-30 17:29:36 -050042
43# This is used during builds and in docker-compose;
44# it is never published to the ONAP registry.
statta91625da2020-05-26 00:01:53 -040045PORTAL_TAG=guilin
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -040046
Christopher Lott (cl778h)0acb4fc2017-10-02 12:09:24 -040047# Name of directory in apps container (NOT host)
48WEBAPPS_DIR=/opt/apache-tomcat-8.0.37/webapps
Kishore Reddy, Gujja (kg811t)a59bc3e2018-09-25 13:59:56 -040049TOMCAT_DIR=/opt/apache-tomcat-8.0.37
50
51# Certs
52TOMCAT_KEY=keystoreONAP.keystore
53TOMCAT_TRUST=truststoreONAPall.jks
54CERT_PWD=changeit
55
Christopher Lott (cl778h)6a4a3492017-10-10 15:54:38 -040056# Required settings with default values.
57# Export shell environment variables on ALL hosts.
Kotta, Shireesha (sk434m)b75f35b2019-06-13 14:41:15 -040058SERVER_XML_DIR=.
Christopher Lott (cl778h)6a4a3492017-10-10 15:54:38 -040059LOGS_DIR=./logs
Kishore Reddy, Gujja (kg811t)6acafbc2018-04-03 11:29:57 -040060PROPS_DIR=./properties_simpledemo
Christopher Lott (cl778h)6a4a3492017-10-10 15:54:38 -040061
62# Optional settings with no defaults.
63EXTRA_HOST_IP=""
64EXTRA_HOST_NAME=""
65# Export shell environment variables on hosts with no DNS;
66# a line is added to docker container's /etc/hosts.
67# For example:
st782s21a87612018-01-30 17:29:36 -050068#EXTRA_HOST_IP="-i 10.11.12.13"
kg811t3aa28e92018-02-08 13:25:08 -050069#EXTRA_HOST_NAME="-n portal.api.simpledemo.onap.org"
Kotta, Shireesha (sk434m)b75f35b2019-06-13 14:41:15 -040070
71#Portal Context
72PORTALCONTEXT=ONAPPORTAL
73FECONTEXT=ONAPPORTAL
74SDKCONTEXT=ONAPPORTALSDK
75
76#Nexus repository for os_docker_base/push/release scripts
77NEXUS_REPO=nexus3.onap.org:10003