You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by as...@apache.org on 2021/02/09 14:50:11 UTC

[camel-k] branch master updated: doc: camel k runtime local instructions

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 712d8dd  doc: camel k runtime local instructions
712d8dd is described below

commit 712d8ddeee42adc8997a47067a08a2282480ba1d
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Tue Feb 9 15:42:37 2021 +0100

    doc: camel k runtime local instructions
---
 docs/modules/ROOT/pages/contributing/local-development.adoc | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/docs/modules/ROOT/pages/contributing/local-development.adoc b/docs/modules/ROOT/pages/contributing/local-development.adoc
index 1229590..36bfad8 100644
--- a/docs/modules/ROOT/pages/contributing/local-development.adoc
+++ b/docs/modules/ROOT/pages/contributing/local-development.adoc
@@ -56,4 +56,13 @@ kubectl port-forward --namespace kube-system registry-fttbv 5000:5000
 ./kamel install --skip-operator-setup -n operator-test --registry localhost:5000 --force
 ----
 
-A similar procedure may work if you use other local environments. The idea is to expose the docker registry and be able to use it from your local operator.
\ No newline at end of file
+A similar procedure may work if you use other local environments. The idea is to expose the docker registry and be able to use it from your local operator.
+
+=== Local Camel K runtime
+
+Camel K integrations are based on https://github.com/apache/camel-k-runtime[Camel K runtime], generally paired with the operator release. If you need to specify a different runtime, or you have a local Camel K runtime that you want to test, then you will need to specify it in the `Integration Platform`:
+----
+./kamel install --skip-operator-setup -n operator-test --registry localhost:5000 --force --runtime-version 1.7.0-SNAPSHOT
+----
+
+With the above instructions, the operator will pick up and use the snapshot version you have released locally.
\ No newline at end of file