Enabled HTTPS for sdc-workflow-designer 50/96450/6
authorr.bogacki <r.bogacki@samsung.com>
Tue, 1 Oct 2019 06:58:51 +0000 (08:58 +0200)
committerOren Kleks <orenkle@amdocs.com>
Sun, 6 Oct 2019 06:18:49 +0000 (06:18 +0000)
-Enabled HTTPS for frontend and backend
-Updated paths and passwords for a certificates

Issue-ID: SDC-2479
Signed-off-by: Robert Bogacki <r.bogacki@samsung.com>
Change-Id: Ibccdae478c047aac1a69192e3c257ea31dc39cac

workflow-designer-be/pom.xml
workflow-designer-be/src/main/resources/application-dev.properties
workflow-designer-be/src/main/resources/application.properties
workflow-designer-be/src/main/resources/assembly.xml [new file with mode: 0644]
workflow-designer-be/src/main/resources/org.onap.sdc.p12 [deleted file]
workflow-designer-init/src/main/docker/Dockerfile
workflow-designer-ui/docker/Dockerfile
workflow-designer-ui/docker/org.onap.sdc.p12 [new file with mode: 0644]
workflow-designer-ui/docker/org.onap.sdc.trust.jks [new file with mode: 0644]
workflow-designer-ui/docker/startup.sh

index d617b07..40b7074 100644 (file)
                                         <from>openjdk:8-jdk-alpine</from>
                                         <user>root</user>
                                         <assembly>
-                                            <descriptorRef>artifact</descriptorRef>
                                             <targetDir>/</targetDir>
+                                            <descriptor>${project.basedir}/src/main/resources/assembly.xml</descriptor>
                                         </assembly>
                                         <entryPoint>
                                             java ${JAVA_OPTIONS} -jar /${project.build.finalName}.jar
index 98eda72..2fdd907 100644 (file)
@@ -1,5 +1,5 @@
 #/
-# Copyright © 2016-2018 European Support Limited
+# Copyright  2016-2018 European Support Limited
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -17,12 +17,12 @@ server.servlet.context-path=/
 http.port=${HTTP_PORT:8080}
 
 server.port=${SERVER_PORT:8443}
-server.ssl.enabled=${SERVER_SSL_ENABLED:false}
-server.ssl.key-password=${SERVER_SSL_KEY_PASSWORD:}
-server.ssl.key-store=${SERVER_SSL_KEYSTORE_PATH:}
-server.ssl.key-store-type=${SERVER_SSL_KEYSTORE_TYPE:}
+server.ssl.enabled=${SERVER_SSL_ENABLED:true}
+server.ssl.key-password=${SERVER_SSL_KEY_PASSWORD:!ppJ.JvWn0hGh)oVF]([Kv)^}
+server.ssl.key-store=${SERVER_SSL_KEYSTORE_PATH:/etc/server-https-keystore/org.onap.sdc.p12}
+server.ssl.key-store-type=${SERVER_SSL_KEYSTORE_TYPE:PKCS12}
 
-sdc.be.protocol=${SDC_PROTOCOL:}
+sdc.be.protocol=${SDC_PROTOCOL:https}
 sdc.be.endpoint=${SDC_ENDPOINT:}
 sdc.be.external.user=${SDC_USER:}
 sdc.be.external.password=${SDC_PASSWORD:}
@@ -55,4 +55,4 @@ logging.file=${java.io.tmpdir}/application.log
 logging.pattern.console= %d{yyyy-MM-dd HH:mm:ss} - %msg%n
 
 # Logging pattern for file
-logging.pattern.file= %d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%
\ No newline at end of file
+logging.pattern.file= %d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%
index e7224a7..44b048a 100644 (file)
@@ -18,11 +18,11 @@ http.port=${HTTP_PORT:8080}
 
 server.port=${SERVER_PORT:8443}
 server.ssl.enabled=${SERVER_SSL_ENABLED:true}
-server.ssl.key-password=${SERVER_SSL_KEY_PASSWORD:rTIS;B4kM]2GHcNK2c3B4&Ng}
-server.ssl.key-store=${SERVER_SSL_KEYSTORE_PATH:classpath:org.onap.sdc.p12}
-server.ssl.key-store-type=${SERVER_SSL_KEYSTORE_TYPE:PKCS12}
+server.ssl.key-password=${SERVER_SSL_KEY_PASSWORD:}
+server.ssl.key-store=${SERVER_SSL_KEYSTORE_PATH:}
+server.ssl.key-store-type=${SERVER_SSL_KEYSTORE_TYPE:}
 
-sdc.be.protocol=${SDC_PROTOCOL:https}
+sdc.be.protocol=${SDC_PROTOCOL:}
 sdc.be.endpoint=${SDC_ENDPOINT:}
 sdc.be.external.user=${SDC_USER:}
 sdc.be.external.password=${SDC_PASSWORD:}
diff --git a/workflow-designer-be/src/main/resources/assembly.xml b/workflow-designer-be/src/main/resources/assembly.xml
new file mode 100644 (file)
index 0000000..f8b802c
--- /dev/null
@@ -0,0 +1,23 @@
+<assembly
+        xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+        xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1 http://maven.apache.org/xsd/assembly-1.1.1.xsd">
+    <id>sdc-wfd-be-files</id>
+    <includeBaseDirectory>false</includeBaseDirectory>
+    <fileSets>
+        <fileSet>
+            <includes>
+                <include>${project.build.finalName}.jar</include>
+            </includes>
+            <directory>${project.build.directory}</directory>
+            <outputDirectory>/</outputDirectory>
+        </fileSet>
+        <fileSet>
+            <includes>
+                <include>org.onap.sdc.p12</include>
+            </includes>
+            <directory>${project.basedir}/../workflow-designer-ui/docker</directory>
+            <outputDirectory>/etc/server-https-keystore</outputDirectory>
+        </fileSet>
+    </fileSets>
+</assembly>
diff --git a/workflow-designer-be/src/main/resources/org.onap.sdc.p12 b/workflow-designer-be/src/main/resources/org.onap.sdc.p12
deleted file mode 100644 (file)
index ee000dc..0000000
Binary files a/workflow-designer-be/src/main/resources/org.onap.sdc.p12 and /dev/null differ
index 399f216..9db2283 100644 (file)
@@ -6,4 +6,4 @@ COPY create_keyspaces.cql create_tables.cql start.sh ./
 
 RUN chmod 744 start.sh
 
-ENTRYPOINT ["./start.sh"]
\ No newline at end of file
+ENTRYPOINT ["./start.sh"]
index 83e8d5a..2a0ef24 100644 (file)
@@ -7,10 +7,12 @@ USER root
 
 ARG ARTIFACT
 
+COPY org.onap.sdc.p12 org.onap.sdc.trust.jks /etc/sdc-cert/
+
 ADD ${ARTIFACT} ${JETTY_BASE}/webapps/
-RUN chown -R jetty:jetty ${JETTY_BASE}/webapps
+RUN chown -R jetty:jetty ${JETTY_BASE}/webapps /etc/sdc-cert
 
 COPY startup.sh .
 RUN chmod 744 startup.sh
 
-ENTRYPOINT [ "./startup.sh" ]
\ No newline at end of file
+ENTRYPOINT [ "./startup.sh" ]
diff --git a/workflow-designer-ui/docker/org.onap.sdc.p12 b/workflow-designer-ui/docker/org.onap.sdc.p12
new file mode 100644 (file)
index 0000000..d03ca1c
Binary files /dev/null and b/workflow-designer-ui/docker/org.onap.sdc.p12 differ
diff --git a/workflow-designer-ui/docker/org.onap.sdc.trust.jks b/workflow-designer-ui/docker/org.onap.sdc.trust.jks
new file mode 100644 (file)
index 0000000..d07ce1a
Binary files /dev/null and b/workflow-designer-ui/docker/org.onap.sdc.trust.jks differ
index 359e6ac..431a0cd 100644 (file)
@@ -7,12 +7,16 @@ if [ "$HTTPS_ENABLED" = "true" ]
 then
     echo "enable ssl"
     if [ -z "$KEYSTORE_PATH" ]; then
+
+        keystore_pass="!ppJ.JvWn0hGh)oVF]([Kv)^"
+        truststore_pass="].][xgtze]hBhz*wy]}m#lf*"
+
         java -jar "${JETTY_HOME}/start.jar" --add-to-start=https,ssl \
             jetty.sslContext.keyStorePath=$KEYSTORE_PATH \
-            jetty.sslContext.keyStorePassword=$KEYSTORE_PASSWORD \
+            jetty.sslContext.keyStorePassword=${KEYSTORE_PASS:-$keystore_pass} \
             jetty.sslContext.keyStoreType=$KEYSTORE_TYPE \
             jetty.sslContext.trustStorePath=$TRUSTSTORE_PATH \
-            jetty.sslContext.trustStorePassword=$TRUSTSTORE_PASSWORD \
+            jetty.sslContext.trustStorePassword=${TRUSTSTORE_PASS:-$truststore_pass} \
             jetty.sslContext.trustStoreType=$TRUSTSTORE_TYPE \
      else
          echo "Using jetty default SSL"
@@ -22,4 +26,4 @@ else
     echo "no ssl required"
 fi
 
-java -DproxyTo=$BACKEND $JAVA_OPTIONS -jar $JETTY_HOME/start.jar
\ No newline at end of file
+java -DproxyTo=$BACKEND $JAVA_OPTIONS -jar $JETTY_HOME/start.jar