You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ma...@apache.org on 2022/10/28 22:35:09 UTC

[camel-karavan] branch main updated: Fix pipeline name

This is an automated email from the ASF dual-hosted git repository.

marat pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git


The following commit(s) were added to refs/heads/main by this push:
     new 0ea8ff1  Fix pipeline name
0ea8ff1 is described below

commit 0ea8ff12aa561ff375f752bf7bd4f51229394b76
Author: Marat Gubaidullin <ma...@gmail.com>
AuthorDate: Fri Oct 28 18:35:00 2022 -0400

    Fix pipeline name
---
 .../main/java/org/apache/camel/karavan/service/KubernetesService.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/karavan-app/src/main/java/org/apache/camel/karavan/service/KubernetesService.java b/karavan-app/src/main/java/org/apache/camel/karavan/service/KubernetesService.java
index fa3f29b..0ada2cf 100644
--- a/karavan-app/src/main/java/org/apache/camel/karavan/service/KubernetesService.java
+++ b/karavan-app/src/main/java/org/apache/camel/karavan/service/KubernetesService.java
@@ -147,7 +147,7 @@ public class KubernetesService {
                 .withNamespace(getNamespace())
                 .build();
 
-        PipelineRef ref = new PipelineRefBuilder().withName("karavan-pipeline-build-quarkus").build();
+        PipelineRef ref = new PipelineRefBuilder().withName(pipeline).build();
 
         PipelineRunSpec spec = new PipelineRunSpecBuilder()
                 .withPipelineRef(ref)