Let straightforward `vidkeystorepassword` setting in values.yaml 83/99583/1
authorIttay Stern <ittay.stern@att.com>
Thu, 12 Dec 2019 14:55:01 +0000 (16:55 +0200)
committerIttay Stern <ittay.stern@att.com>
Thu, 12 Dec 2019 17:10:58 +0000 (19:10 +0200)
The value of vidkeystorepassword is plugged as environment variable
VID_KEYSTORE_PASSWORD. (see commit 7a3e2594; change-id:
Ibf52542344ecf79fb947858329f37018731d2270)

Now CATALINA_OPTS will be evaluated when container is started, with
the actual value of VID_KEYSTORE_PASSWORD env variable.

This fixes the issue where CATALINA_OPTS is evaluated at Docker
build time, with a static VID_KEYSTORE_PASSWORD value.

Issue-ID: VID-494
Issue-ID: VID-650

Change-Id: Ife2a2e92b3745691cc45590d1afd1688d918048f
Signed-off-by: Ittay Stern <ittay.stern@att.com>
deliveries/src/main/docker/docker-files/Dockerfile
deliveries/src/main/scripts/localize.sh

index 62feb8c..f6070d8 100755 (executable)
@@ -82,8 +82,6 @@ ENV VID_CONTACT_US_LINK="https://todo_contact_us_link.com" \
 
 # Custom options
 ENV JAVA_OPTS="-Xmx1536m -Xms1536m"
-ENV CATALINA_OPTS="-Dvid.keystore.password=${VID_KEYSTORE_PASSWORD} -Dvid.keyalias=vid@vid.onap.org -Dvid.keystore.filename=${VID_KEYSTORE_FILENAME} -Dcom.att.eelf.logging.file=logback.xml -Dcom.att.eelf.logging.path=/tmp"
-
 
 ADD maven/config/server.xml ${VID_TOMCAT_PATH}
 ADD maven/scripts/*.sh /tmp/vid/
index aca557f..9180279 100755 (executable)
@@ -20,4 +20,10 @@ TEMPLATES_BASE_DIR=/usr/local/tomcat/webapps/vid/WEB-INF
 
 fillTemplateProperties ${TEMPLATES_BASE_DIR}
 
+# Set CATALINA_OPTS if not defined previously
+# Enables late-evaluation of env variables, such as VID_KEYSTORE_PASSWORD
+: "${CATALINA_OPTS:=-Dvid.keystore.password=${VID_KEYSTORE_PASSWORD} -Dvid.keyalias=vid@vid.onap.org -Dvid.keystore.filename=${VID_KEYSTORE_FILENAME} -Dcom.att.eelf.logging.file=logback.xml -Dcom.att.eelf.logging.path=/tmp}"
+echo "CATALINA_OPTS: ${CATALINA_OPTS}"
+export CATALINA_OPTS
+
 catalina.sh run