You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2019/09/23 16:32:29 UTC

[camel-k] 02/07: Updated references

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

nferraro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 21c7412b22a750b2caa55e6a6dcd7bde50c7fcd3
Author: nferraro <ni...@gmail.com>
AuthorDate: Wed Sep 18 17:45:40 2019 +0200

    Updated references
---
 examples/tekton/camel-k-pipeline-run.yaml | 4 +++-
 script/Makefile                           | 2 ++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/examples/tekton/camel-k-pipeline-run.yaml b/examples/tekton/camel-k-pipeline-run.yaml
index f50df36..bd57dbe 100644
--- a/examples/tekton/camel-k-pipeline-run.yaml
+++ b/examples/tekton/camel-k-pipeline-run.yaml
@@ -18,12 +18,14 @@ metadata:
 spec:
   steps:
     - name: install
-      image: apache/camel-k:1.0.0-M1
+      image: nferraro/camel-k:1.0.0-M2-SNAPSHOT
       command:
         - kamel
       args:
         - "install"
         - "--skip-cluster-setup"
+        - "--operator-image"
+        - "nferraro/camel-k:1.0.0-M2-SNAPSHOT"
 ---
 apiVersion: tekton.dev/v1alpha1
 kind: Pipeline
diff --git a/script/Makefile b/script/Makefile
index 55a4c0f..c09462c 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -161,12 +161,14 @@ images: test
 	mkdir -p build/_maven_output
 	mkdir -p build/_output/bin
 	cp builder build/_output/bin
+	cp kamel build/_output/bin
 	operator-sdk build $(IMAGE_NAME):$(VERSION)
 
 images-dev: test package-artifacts
 	mkdir -p build/_maven_output
 	mkdir -p build/_output/bin
 	cp builder build/_output/bin
+	cp kamel build/_output/bin
 	operator-sdk build $(IMAGE_NAME):$(VERSION)
 
 images-push: