Skip to content

Commit

Permalink
Use released Oslo/Potassium parent poms
Browse files Browse the repository at this point in the history
Use released version of parent poms for ONAP Oslo release

Issue-ID: SDNC-1846
Signed-off-by: Dan Timoney <[email protected]>
Change-Id: I1b3d239582c0df80878e0f68d1971363e87497ca
  • Loading branch information
djtimoney committed Sep 25, 2024
1 parent 885b4e6 commit f1dcd52
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 13 deletions.
2 changes: 1 addition & 1 deletion SdncReports/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.onap.ccsdk.parent</groupId>
<artifactId>spring-boot-1-starter-parent</artifactId>
<version>2.6.1</version>
<version>2.8.0</version>
<relativePath/>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion admportal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.onap.ccsdk.parent</groupId>
<artifactId>binding-parent</artifactId>
<version>2.6.1</version>
<version>2.8.0</version>
<relativePath/>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion configbackuprestore/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.onap.ccsdk.parent</groupId>
<artifactId>spring-boot-1-starter-parent</artifactId>
<version>2.6.1</version>
<version>2.8.0</version>
</parent>

<groupId>org.onap.sdnc.oam.vnfbackup</groupId>
Expand Down
20 changes: 20 additions & 0 deletions installation/sdnc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,26 @@
</resources>
</configuration>
</execution>
<execution>
<id>copy-certificates</id>
<goals>
<goal>copy-resources</goal>
</goals><!-- here the phase you need -->
<phase>validate</phase>
<configuration>
<outputDirectory>${basedir}/target/docker-stage</outputDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>*.pem</include>
<include>*.md</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
Expand Down
6 changes: 6 additions & 0 deletions installation/sdnc/src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ ENV SDNC_SECUREPORT ${sdnc.secureport}

ARG AAF=false

# Copy any certs
COPY *.md *.pem /etc/ssl/certs/

# Install certs
RUN update-ca-certificates

# Copy deliverables to opt
COPY opt /opt
RUN test -L /opt/sdnc || ln -s /opt/onap/sdnc /opt/sdnc
Expand Down
3 changes: 3 additions & 0 deletions installation/sdnc/src/main/resources/README-custom-certs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Any .pem files in this directory will be copied to /etc/ssl/certs on the
docker container and installed prior to running apk. This might be needed,
for example, for docker builds to work properly behind a corporate firewall.
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.onap.ccsdk.parent</groupId>
<artifactId>odlparent-lite</artifactId>
<version>2.6.1</version>
<version>2.8.0</version>
<relativePath/>
</parent>

Expand All @@ -25,18 +25,18 @@
<sdnc.project.version>${project.version}</sdnc.project.version>

<!-- All Version definition is placed in org.onap.ccsdk.parent/odlparent-lite -->
<ccsdk.oran.a1adapter.version>1.8.0-SNAPSHOT</ccsdk.oran.a1adapter.version>
<sdnc.northbound.version>2.8.0-SNAPSHOT</sdnc.northbound.version> <!-- Used by installation/sdnc -->
<ccsdk.distribution.version>1.7.0-SNAPSHOT</ccsdk.distribution.version>
<ccsdk.sli.version>1.9.0-SNAPSHOT</ccsdk.sli.version>
<ccsdk.features.version>1.8.0-SNAPSHOT</ccsdk.features.version>
<ccsdk.oran.a1adapter.version>1.8.0</ccsdk.oran.a1adapter.version>
<sdnc.northbound.version>2.8.0</sdnc.northbound.version> <!-- Used by installation/sdnc -->
<ccsdk.distribution.version>1.7.0</ccsdk.distribution.version>
<ccsdk.sli.version>1.9.0</ccsdk.sli.version>
<ccsdk.features.version>1.8.0</ccsdk.features.version>
<ccsdk.sli.northbound.version>${ccsdk.sli.version}</ccsdk.sli.northbound.version>
<ccsdk.bierman.api.version>1.0.0</ccsdk.bierman.api.version>
<!-- docker images versions -->
<ccsdk.docker.alpine.j11.version>1.7.0-STAGING-latest</ccsdk.docker.alpine.j11.version> <!-- Used by dmaap-listener, ueb-listener -->
<ccsdk.docker.odlsli.alpine.version>1.7.0-SNAPSHOT-latest</ccsdk.docker.odlsli.alpine.version> <!-- Used by sdnc -->
<ccsdk.docker.ansible.server.version>1.7.0-STAGING-latest</ccsdk.docker.ansible.server.version> <!-- Used by ansible-server -->
<ccsdk.docker.ubuntu.version>1.7.0-STAGING-latest</ccsdk.docker.ubuntu.version> <!-- Used by admportal -->
<ccsdk.docker.alpine.j11.version>1.7.0</ccsdk.docker.alpine.j11.version> <!-- Used by dmaap-listener, ueb-listener -->
<ccsdk.docker.odlsli.alpine.version>1.7.0</ccsdk.docker.odlsli.alpine.version> <!-- Used by sdnc -->
<ccsdk.docker.ansible.server.version>1.7.0</ccsdk.docker.ansible.server.version> <!-- Used by ansible-server -->
<ccsdk.docker.ubuntu.version>1.7.0</ccsdk.docker.ubuntu.version> <!-- Used by admportal -->
</properties>

<modules>
Expand Down

0 comments on commit f1dcd52

Please sign in to comment.