Skip to content

Commit

Permalink
master: Adds separate starters (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarlett authored Oct 15, 2024
1 parent 3a209fd commit 1250b9c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
10 changes: 10 additions & 0 deletions master/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,12 @@
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-file-cluster-service-starter</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>openshift</id>
Expand All @@ -131,6 +137,10 @@
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-kubernetes-starter</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-kubernetes-cluster-service-starter</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
1 change: 0 additions & 1 deletion master/src/main/resources/application-file.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
## limitations under the License.
## ---------------------------------------------------------------------------

camel.cluster.file.enabled = true
camel.cluster.file.id = ${node.id}
camel.cluster.file.root = ${java.io.tmpdir}

Expand Down
3 changes: 0 additions & 3 deletions master/src/main/resources/application-openshift.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,5 @@
## limitations under the License.
## ---------------------------------------------------------------------------


camel.cluster.kubernetes.enabled = true

node.id = ${HOSTNAME}
node.namespace = ${KUBERNETES_NAMESPACE}

0 comments on commit 1250b9c

Please sign in to comment.