Skip to content

Commit

Permalink
C2C-85: Include k8s-services.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuisson committed May 14, 2021
1 parent 0ac6932 commit 7da8498
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
24 changes: 24 additions & 0 deletions k8s-services.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
apps:
proxy:
enabled: true
appointments:
enabled: true
bahmni_config:
enabled: true
bahmni_filestore:
enabled: true
bahmniapps:
enabled: true
mysql:
enabled: true
odoo:
enabled: true
odoo_connect:
enabled: true
openmrs:
enabled: true
postgresql:
enabled: true
openelis:
enabled: true
25 changes: 25 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,31 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<outputDirectory>${project.build.directory}/${project.artifactId}-${project.version}</outputDirectory>
<resources>
<resource>
<directory>${project.basedir}</directory>
<includes>
<include>k8s-services.yml</include>
</includes>
</resource>
</resources>
</configuration>
<executions>
<execution>
<id>copy-resources</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 7da8498

Please sign in to comment.