Skip to content

Commit d8636de

Browse files
committed
fix(ctrl): proper master dependencies in plain Quarkus
1 parent 99d8cdd commit d8636de

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

pkg/controller/integrationplatform/monitor.go

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,20 @@ func (action *monitorAction) addPlainQuarkusCatalog(ctx context.Context, catalog
194194
}
195195
runtimesProps := clonedCatalog.Spec.Runtime.Capabilities["master"].RuntimeProperties
196196
clonedCatalog.Spec.Runtime.Capabilities["master"] = v1.Capability{
197-
Dependencies: []v1.MavenArtifact{},
197+
Dependencies: []v1.MavenArtifact{
198+
{
199+
GroupID: "org.apache.camel.quarkus",
200+
ArtifactID: "camel-quarkus-master",
201+
},
202+
{
203+
GroupID: "org.apache.camel.quarkus",
204+
ArtifactID: "camel-quarkus-kubernetes",
205+
},
206+
{
207+
GroupID: "org.apache.camel.quarkus",
208+
ArtifactID: "camel-quarkus-kubernetes-cluster-service",
209+
},
210+
},
198211
RuntimeProperties: runtimesProps,
199212
}
200213
clonedCatalog.Spec.Runtime.Capabilities["resume-kafka"] = v1.Capability{

0 commit comments

Comments
 (0)