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

fix(ci): update CLIs URL #4598

Merged
merged 2 commits into from Jul 25, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/e2e-install-olm/action.yml
Expand Up @@ -61,7 +61,7 @@ runs:
shell: bash
run: |
export KAMEL_VERSION=$(make get-last-released-version)
curl -L https://github.com/apache/camel-k/releases/download/v${KAMEL_VERSION}/camel-k-client-${KAMEL_VERSION}-linux-64bit.tar.gz -o /tmp/kamel.tar.gz
curl -L https://github.com/apache/camel-k/releases/download/v${KAMEL_VERSION}/camel-k-client-${KAMEL_VERSION}-linux-amd64.tar.gz -o /tmp/kamel.tar.gz
pushd /tmp && tar -zxf kamel.tar.gz && popd > /dev/null
if [ ! -x /tmp/kamel ]; then
echo "Error: No ${KAMEL_VERSION} downloaded correctly"
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/e2e-install-upgrade/action.yml
Expand Up @@ -61,7 +61,7 @@ runs:
shell: bash
run: |
export KAMEL_VERSION=$(make get-last-released-version)
curl -L https://github.com/apache/camel-k/releases/download/v${KAMEL_VERSION}/camel-k-client-${KAMEL_VERSION}-linux-64bit.tar.gz -o /tmp/kamel.tar.gz
curl -L https://github.com/apache/camel-k/releases/download/v${KAMEL_VERSION}/camel-k-client-${KAMEL_VERSION}-linux-amd64.tar.gz -o /tmp/kamel.tar.gz
pushd /tmp && tar -zxf kamel.tar.gz && popd > /dev/null
if [ ! -x /tmp/kamel ]; then
echo "Error: No ${KAMEL_VERSION} downloaded correctly"
Expand Down
2 changes: 1 addition & 1 deletion cicd/tekton/kamel-run/0.1/kamel-run.yaml
Expand Up @@ -19,7 +19,7 @@ spec:
params:
- name: camel-k-image
description: The location of Camel K CLI image.
default: docker.io/apache/camel-k:1.12.0
default: docker.io/apache/camel-k:2.0.0
- name: filename
description: the Integration source we want to run
- name: namespace
Expand Down
4 changes: 2 additions & 2 deletions cicd/tekton/kamel-run/0.1/tests/pre-apply-task-hook.sh
Expand Up @@ -20,8 +20,8 @@
add_sidecar_registry ${TMPF}

# Install Camel K operator
wget https://github.com/apache/camel-k/releases/download/v1.12.0/camel-k-client-1.12.0-linux-64bit.tar.gz
tar -xvf camel-k-client-1.12.0-linux-64bit.tar.gz
wget https://github.com/apache/camel-k/releases/download/v2.0.0/camel-k-client-2.0.0-linux-amd64.tar.gz
tar -xvf camel-k-client-2.0.0-linux-amd64.tar.gz
./kamel install --registry localhost:5000 --registry-insecure --wait

# Add git-clone
Expand Down