X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=deliveries%2F.env;h=c5961d33099c30e27f445b8e0fdcb7aebe5c1485;hb=83de9db899ebf7ec87220670d6f5cf35a10d087b;hp=0a3230d7b028f423ee823a0bacb8314c245c07b5;hpb=6a4a349a1be3ad5460e507dc4e2098936fd23859;p=portal.git diff --git a/deliveries/.env b/deliveries/.env index 0a3230d7..c5961d33 100644 --- a/deliveries/.env +++ b/deliveries/.env @@ -1,23 +1,63 @@ # Environment settings # used by docker-compose AND by other shell scripts +# The name ".env" is required by docker-compose + +# Dockerfile names. To skip building one or more docker images, +# change dockerfile name to "skip" +PORTAL_DOCKERFILE=Dockerfile.portal +SDK_DOCKERFILE=Dockerfile.sdk +DB_DOCKERFILE=Dockerfile.mariadb +WMS_DOCKERFILE=Dockerfile.wms +# These are FE only and BE only docker images. Change to Dockerfile.fe and Dockerfile.be to enable. +FE_DOCKERFILE=skip +BE_DOCKERFILE=skip + +# Relative directories and filenames for builds +SDK_APP_DIR=sdk/ecomp-sdk/epsdk-app-os +SDK_WAR_DIR=sdk/ecomp-sdk/epsdk-app-os/target +SDK_WAR_FILE=epsdk-app-os.war +BE_WAR_DIR=ecomp-portal-BE-os/target +BE_WAR_FILE=portal-be-os.war +FE_DIR=ecomp-portal-FE-os/dist/public +WIDGET_MS_JAR_DIR=ecomp-portal-widget-ms/widget-ms/target +WIDGET_MS_JAR_FILE=widget-ms.jar # Following are ALSO used in demo/boot/portal_vm_init.sh -EP_IMG_NAME=onap/portal-apps +EP_IMG_NAME=onap/portal-app +SDK_IMG_NAME=onap/portal-sdk +FE_IMG_NAME=onap/portal-fe +BE_IMG_NAME=onap/portal-be DB_IMG_NAME=onap/portal-db WMS_IMG_NAME=onap/portal-wms + +CDR_IMG_NAME=onap/music/cassandra_music +ZK_IMG_NAME=zookeeper + # Deployed with portal; built elsewhere CLI_IMG_NAME=onap/cli -# Tag all images with this -PORTAL_TAG=1.3.0 +# This is the first portion of the Docker image tag +# that is published to the ONAP registry. +PORTAL_VERSION=2.6.0 + +# This is used during builds and in docker-compose; +# it is never published to the ONAP registry. +PORTAL_TAG=elalto # Name of directory in apps container (NOT host) WEBAPPS_DIR=/opt/apache-tomcat-8.0.37/webapps +TOMCAT_DIR=/opt/apache-tomcat-8.0.37 + +# Certs +TOMCAT_KEY=keystoreONAP.keystore +TOMCAT_TRUST=truststoreONAPall.jks +CERT_PWD=changeit # Required settings with default values. # Export shell environment variables on ALL hosts. +SERVER_XML_DIR=. LOGS_DIR=./logs -PROPS_DIR=./properties_rackspace +PROPS_DIR=./properties_simpledemo # Optional settings with no defaults. EXTRA_HOST_IP="" @@ -25,5 +65,13 @@ EXTRA_HOST_NAME="" # Export shell environment variables on hosts with no DNS; # a line is added to docker container's /etc/hosts. # For example: -#EXTRA_HOST_IP="-i 135.207.161.163" -#EXTRA_HOST_NAME="-n portal.api.simpledemo.openecomp.org" +#EXTRA_HOST_IP="-i 10.11.12.13" +#EXTRA_HOST_NAME="-n portal.api.simpledemo.onap.org" + +#Portal Context +PORTALCONTEXT=ONAPPORTAL +FECONTEXT=ONAPPORTAL +SDKCONTEXT=ONAPPORTALSDK + +#Nexus repository for os_docker_base/push/release scripts +NEXUS_REPO=nexus3.onap.org:10003