diff options
author | Ittay Stern <ittay.stern@att.com> | 2019-12-12 16:55:01 +0200 |
---|---|---|
committer | Ittay Stern <ittay.stern@att.com> | 2019-12-12 19:10:58 +0200 |
commit | 479b73d878468eb980bc436368263b42344147be (patch) | |
tree | 16efdcc5042e6edf4d7cf446c82ae974dfbccb9e /deliveries/src/main/scripts | |
parent | ca8f3583c919bc5ce2d66c7f783f7dce4cf5a955 (diff) |
Let straightforward `vidkeystorepassword` setting in values.yaml
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>
Diffstat (limited to 'deliveries/src/main/scripts')
-rwxr-xr-x | deliveries/src/main/scripts/localize.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/deliveries/src/main/scripts/localize.sh b/deliveries/src/main/scripts/localize.sh index aca557f36..918027913 100755 --- a/deliveries/src/main/scripts/localize.sh +++ b/deliveries/src/main/scripts/localize.sh @@ -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 |