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 2022/03/23 10:36:32 UTC

[camel-kamelets] 01/02: Use URI notation for some of the parameters we define in actions - String Template Action

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

acosentino pushed a commit to branch fix-844-6
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit c4a2ccf207475cb09585e8341203cb3972e3de48
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Mar 23 11:33:41 2022 +0100

    Use URI notation for some of the parameters we define in actions - String Template Action
---
 kamelets/string-template-action.kamelet.yaml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/kamelets/string-template-action.kamelet.yaml b/kamelets/string-template-action.kamelet.yaml
index bfc2c8c..417dc20 100644
--- a/kamelets/string-template-action.kamelet.yaml
+++ b/kamelets/string-template-action.kamelet.yaml
@@ -31,8 +31,6 @@ spec:
     title: "String Template Action"
     description: |-
       Apply a String Template.
-
-      The template property needs to be encoded in base64, so when you pass it as parameter, don't forget to encode it.
     required:
       - template
     type: object
@@ -40,7 +38,9 @@ spec:
       template:
         title: Template
         description: The inline template
-        type: binary
+        type: string
+        example: "file:////template.tm"
+        pattern: "^(http|https|file|classpath)://.*"
   dependencies:
   - "camel:stringtemplate"
   - "camel:kamelet"
@@ -51,4 +51,4 @@ spec:
       - to:
           uri: "string-template:"
           parameters:
-            resourceUri: "base64:{{template}}"
+            resourceUri: "{{template}}"