From 64636c2148414c1fa5da4b46a69570cdab003837 Mon Sep 17 00:00:00 2001 From: "k.kedron" Date: Wed, 28 Aug 2019 14:31:52 +0200 Subject: Fully HTTPS support in the dcaedt-be Fully HTTPS support: -Updated the onap/base_sdc-jetty docker image version -Updated the chef script to properly used of the new docker image -Updated jvm configuration to support call to the SDC components using HTTPS. -Add support for change the http to https in the python script -Added buildRestClient method to create the CloseableHttpClient supporting the SSL connection -Checkstyle in the recipes -Update the docker_run.sh: - Change JAVA_OPTIONS - Used the secure connection to do health check Issue-ID: SDC-2477 Signed-off-by: Krystian Kedron Change-Id: I7bf3d307e5765fa75a37ba0a4b41fd7fa87d28ab --- docker/docker_tools/startup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docker/docker_tools/startup.sh') diff --git a/docker/docker_tools/startup.sh b/docker/docker_tools/startup.sh index c8f5132..a158317 100644 --- a/docker/docker_tools/startup.sh +++ b/docker/docker_tools/startup.sh @@ -5,7 +5,7 @@ cd /var/opt/dcae-tools/chef-solo chef-solo -c solo.rb -E ${ENVNAME} --log_level "debug" --logfile "/tmp/Chef-Solo.log" status=$? -if [ $status != 0 ]; then +if [[ ${status} != 0 ]]; then echo "[ERROR] Problem detected while running chef. Aborting !" exit 1 fi -- cgit 1.2.3-korg