aboutsummaryrefslogtreecommitdiffstats
path: root/installation/admportal
diff options
context:
space:
mode:
authorRotundo, Alfred (ar3165) <ar3165@att.com>2018-11-20 19:31:46 +0000
committerTimoney, Dan (dt5972) <dtimoney@att.com>2019-04-09 15:34:18 -0400
commit67710454be20dbff2330dde919f837d850ed50ed (patch)
tree141d3dc44929f7b6d4d06e64b9f9f68b9f719693 /installation/admportal
parentf3c9e00fd74a3db4a5e4b9cfeaf6cc88bbe45e55 (diff)
Add new HTTPS listener on port 8443
Changes made: expose port 8443 from container added new listener to listen on that port added cert when starting up Change-Id: I5106192d55d51fd340f28b9eace0c5ea83afcd99 Issue-ID: SDNC-528 Signed-off-by: Rotundo, Alfred (ar3165) <ar3165@att.com> Former-commit-id: 77710f34952c5ac8d6f8250d90b03b43de1a4a5b
Diffstat (limited to 'installation/admportal')
-rw-r--r--installation/admportal/pom.xml21
-rw-r--r--installation/admportal/src/main/docker/Dockerfile2
2 files changed, 21 insertions, 2 deletions
diff --git a/installation/admportal/pom.xml b/installation/admportal/pom.xml
index a7b49678..180cb92d 100644
--- a/installation/admportal/pom.xml
+++ b/installation/admportal/pom.xml
@@ -69,7 +69,7 @@
<executions>
<execution>
<id>generate-images</id>
- <phase>generate-sources</phase>
+ <phase>process-sources</phase>
<goals>
<goal>build</goal>
</goals>
@@ -129,6 +129,25 @@
</resources>
</configuration>
</execution>
+ <execution>
+ <id>copy-keystores</id>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals><!-- here the phase you need -->
+ <phase>validate</phase>
+ <configuration>
+ <outputDirectory>${basedir}/target/docker-stage/opt/onap/sdnc/data/stores</outputDirectory>
+ <resources>
+ <resource>
+ <directory>../src/main/stores</directory>
+ <includes>
+ <include>*.p12</include>
+ </includes>
+ <filtering>false</filtering>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
</executions>
</plugin>
<plugin>
diff --git a/installation/admportal/src/main/docker/Dockerfile b/installation/admportal/src/main/docker/Dockerfile
index abaa056f..21cd7a30 100644
--- a/installation/admportal/src/main/docker/Dockerfile
+++ b/installation/admportal/src/main/docker/Dockerfile
@@ -9,4 +9,4 @@ MAINTAINER SDN-C Team (sdnc@lists.openecomp.org)
COPY opt /opt
#ENTRYPOINT exec /opt/openecomp/sdnc/admportal/shell/startssl.sh
-EXPOSE 8843
+EXPOSE 8843 8443