Skip to content

Commit

Permalink
refactor(container): make dv and solr container different profiles, s…
Browse files Browse the repository at this point in the history
…horten profile names to ct & solr-ct
  • Loading branch information
poikilotherm committed Mar 25, 2021
1 parent 3fe29e2 commit ed3ee9e
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -876,13 +876,11 @@
</build>
</profile>
<profile>
<id>container</id>
<id>ct</id>
<properties>
<skipUnitTests>true</skipUnitTests>
<app.image.name>gdcc/dataverse-k8s:${project.version}</app.image.name>
<solr.image.name>gdcc/solr-k8s:${project.version}</solr.image.name>
</properties>

<build>
<plugins>
<plugin>
Expand All @@ -905,6 +903,27 @@
</assembly>
</build>
</image>
</images>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>solr-ct</id>
<properties>
<skipUnitTests>true</skipUnitTests>
<solr.image.name>gdcc/solr-k8s:${project.version}</solr.image.name>
</properties>

<build>
<plugins>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.34.1</version>
<configuration>
<images>
<!-- Solr K8s image -->
<image>
<alias>solr</alias>
Expand Down

0 comments on commit ed3ee9e

Please sign in to comment.