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

Update YAKS to v0.7.0 #631

Merged
merged 1 commit into from
Dec 15, 2021
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ concurrency:

env:
CAMEL_K_VERSION: 1.5.0
YAKS_VERSION: 0.6.0
YAKS_VERSION: 0.7.0
YAKS_IMAGE_NAME: "docker.io/citrusframework/yaks"

jobs:
Expand All @@ -63,7 +63,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: 2 additions & 0 deletions test/earthquake-source/yaks-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ config:
temporary: true
pre:
- name: installation
if: env:CI=true
run: |
# Install required Kamelets (these steps may be done globally in future versions)

Expand All @@ -28,6 +29,7 @@ pre:
kubectl apply -f ../../kamelets/earthquake-source.kamelet.yaml -n $YAKS_NAMESPACE
post:
- name: dump
if: env:CI=true
run: |
kamel dump -n $YAKS_NAMESPACE $(basename `pwd`)-dump.log
mkdir -p /tmp/dumps
Expand Down
2 changes: 2 additions & 0 deletions test/insert-field-action/yaks-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ config:
temporary: true
pre:
- name: installation
if: env:CI=true
run: |
# Install required Kamelets (these steps may be done globally in future versions)

Expand All @@ -30,6 +31,7 @@ pre:
kubectl apply -f insert-field-action-binding.yaml -n $YAKS_NAMESPACE
post:
- name: dump
if: env:CI=true
run: |
kamel dump -n $YAKS_NAMESPACE $(basename `pwd`)-dump.log
mkdir -p /tmp/dumps
Expand Down
2 changes: 2 additions & 0 deletions test/mail-sink/yaks-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ config:
- timer-to-mail.yaml
pre:
- name: installation
if: env:CI=true
run: |
# Install required Kamelets (these steps may be done globally in future versions)

Expand All @@ -41,6 +42,7 @@ pre:
kubectl apply -f ../../kamelets/timer-source.kamelet.yaml -n $YAKS_NAMESPACE
post:
- name: dump
if: env:CI=true
run: |
kamel dump -n $YAKS_NAMESPACE $(basename `pwd`)-dump.log
mkdir -p /tmp/dumps
Expand Down