You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/07/14 09:47:12 UTC

[camel-k-examples] branch knative-source-example created (now 1feb018)

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

acosentino pushed a change to branch knative-source-example
in repository https://gitbox.apache.org/repos/asf/camel-k-examples.git.


      at 1feb018  Knative source basics example: Should point to 0.15.0 Knative documentation, with 0.16.0, the latest, the spec has been changed pointing to some v1

This branch includes the following new commits:

     new 1feb018  Knative source basics example: Should point to 0.15.0 Knative documentation, with 0.16.0, the latest, the spec has been changed pointing to some v1

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel-k-examples] 01/01: Knative source basics example: Should point to 0.15.0 Knative documentation, with 0.16.0, the latest, the spec has been changed pointing to some v1

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch knative-source-example
in repository https://gitbox.apache.org/repos/asf/camel-k-examples.git

commit 1feb0186fecab91804cceace64d11914a41d9c87
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Jul 14 11:46:03 2020 +0200

    Knative source basics example: Should point to 0.15.0 Knative documentation, with 0.16.0, the latest, the spec has been changed pointing to some v1
---
 03-knative-source-basic/readme.didact.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/03-knative-source-basic/readme.didact.md b/03-knative-source-basic/readme.didact.md
index f030de0..a9e3ff6 100644
--- a/03-knative-source-basic/readme.didact.md
+++ b/03-knative-source-basic/readme.didact.md
@@ -44,7 +44,7 @@ You need the Apache Camel K CLI ("kamel") in order to access all Camel K feature
 
 **Knative installed on the cluster**
 
-The cluster also needs to have Knative installed and working. Refer to the [official Knative documentation](https://knative.dev/docs/install/) for information on how to install it in your cluster.
+The cluster also needs to have Knative installed and working. Refer to the [official Knative documentation](https://knative.dev/v0.15-docs/install/) for information on how to install it in your cluster.
 
 [Check if the Knative Serving is installed](didact://?commandId=vscode.didact.requirementCheck&text=kserving-project-check$$kubectl%20api-resources%20--api-group=serving.knative.dev$$kservice%2Cksvc&completion=Verified%20Knative%20services%20installation. "Verifies if Knative Serving is installed"){.didact}
 
@@ -56,7 +56,7 @@ The cluster also needs to have Knative installed and working. Refer to the [offi
 
 **Knative Camel Source installed on the cluster**
 
-The cluster also needs to have installed the Knative Camel Source from the camel.yaml in the [Eventing Sources release page](https://github.com/knative/eventing-contrib/releases)
+The cluster also needs to have installed the Knative Camel Source from the camel.yaml in the [Eventing Sources release page](https://github.com/knative/eventing-contrib/releases/tag/v0.15.0)
 
 [Check if the Knative Camel Source is installed](didact://?commandId=vscode.didact.requirementCheck&text=kservice-project-check$$kubectl%20api-resources%20--api-group=sources.knative.dev$$camelsources&completion=Verified%20Knative%20Camel%20Source%20installation. "Verifies if Knative Camel Source is installed"){.didact}
 
@@ -134,7 +134,7 @@ kubectl create secret generic telegram --from-file=telegram.properties
 ```
 ([^ execute](didact://?commandId=vscode.didact.sendNamedTerminalAString&text=camelTerm$$kubectl%20create%20secret%20generic%20telegram%20--from-file%3Dtelegram.properties&completion=secret%20%22telegram%22%20created. "Create a secret with Telegram credentials"){.didact})
 
-As the example levareges [Knative Eventing channels](https://knative.dev/docs/eventing/channels/), we need to create the one that the example will use:
+As the example levareges [Knative Eventing channels](https://knative.dev/v0.15-docs/eventing/channels/), we need to create the one that the example will use:
 
 ```
 kubectl apply -f telegram-channel.yaml