Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JSLT Action - Fix too many slashes in example of template #1167

Merged
merged 2 commits into from
Nov 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/yaks-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ concurrency:
cancel-in-progress: true

env:
CAMEL_K_VERSION: 1.8.2
YAKS_VERSION: 0.9.0-202203140033
CAMEL_K_VERSION: 1.10.3
YAKS_VERSION: 0.11.0
YAKS_IMAGE_NAME: "docker.io/yaks/yaks"
YAKS_RUN_OPTIONS: "--timeout=15m"

Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
rm -r _kamel
- name: Get YAKS CLI
run: |
curl --fail -L --silent https://github.com/citrusframework/yaks/releases/download/${YAKS_VERSION}/yaks-${YAKS_VERSION}-linux-64bit.tar.gz -o yaks.tar.gz
curl --fail -L --silent https://github.com/citrusframework/yaks/releases/download/v${YAKS_VERSION}/yaks-${YAKS_VERSION}-linux-64bit.tar.gz -o yaks.tar.gz
mkdir -p _yaks
tar -zxf yaks.tar.gz --directory ./_yaks
sudo mv ./_yaks/yaks /usr/local/bin/
Expand Down
2 changes: 1 addition & 1 deletion kamelets/jslt-action.kamelet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spec:
title: Template
description: The inline template for JSLT Transformation
type: string
example: "file:////template.json"
example: "file://template.json"
pattern: "^(http|https|file|classpath)://.*"
dependencies:
- "camel:jslt"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spec:
title: Template
description: The inline template for JSLT Transformation
type: string
example: "file:////template.json"
example: "file://template.json"
pattern: "^(http|https|file|classpath)://.*"
dependencies:
- "camel:jslt"
Expand Down
4 changes: 2 additions & 2 deletions test/aws-ddb-sink/aws-ddb-sink-binding.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ spec:
- ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: log-sink
propeties:
name: log-action
properties:
showHeaders: true
sink:
ref:
Expand Down