You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2023/07/25 10:01:48 UTC

[camel-k] branch main updated (295b89867 -> c6bad31fa)

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

pcongiusti pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git


    from 295b89867 chore(ci): validate only pkg changes
     new 15458b8e7 chore(ci): bump Tekton task
     new c6bad31fa fix(ci): update CLIs URL

The 2 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.


Summary of changes:
 .github/actions/e2e-install-olm/action.yml             | 2 +-
 .github/actions/e2e-install-upgrade/action.yml         | 2 +-
 cicd/tekton/kamel-run/0.1/kamel-run.yaml               | 2 +-
 cicd/tekton/kamel-run/0.1/tests/pre-apply-task-hook.sh | 4 ++--
 4 files changed, 5 insertions(+), 5 deletions(-)


[camel-k] 01/02: chore(ci): bump Tekton task

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

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 15458b8e7e8f1fa2b698101ab478c3309a59c960
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Tue Jul 25 10:15:43 2023 +0200

    chore(ci): bump Tekton task
---
 cicd/tekton/kamel-run/0.1/kamel-run.yaml               | 2 +-
 cicd/tekton/kamel-run/0.1/tests/pre-apply-task-hook.sh | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/cicd/tekton/kamel-run/0.1/kamel-run.yaml b/cicd/tekton/kamel-run/0.1/kamel-run.yaml
index f6056c921..1c6c148da 100644
--- a/cicd/tekton/kamel-run/0.1/kamel-run.yaml
+++ b/cicd/tekton/kamel-run/0.1/kamel-run.yaml
@@ -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
diff --git a/cicd/tekton/kamel-run/0.1/tests/pre-apply-task-hook.sh b/cicd/tekton/kamel-run/0.1/tests/pre-apply-task-hook.sh
index 4fa768dde..10588d96a 100755
--- a/cicd/tekton/kamel-run/0.1/tests/pre-apply-task-hook.sh
+++ b/cicd/tekton/kamel-run/0.1/tests/pre-apply-task-hook.sh
@@ -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


[camel-k] 02/02: fix(ci): update CLIs URL

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

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit c6bad31fa4dcbeff4ae8b48fca481d262a03ce20
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Tue Jul 25 10:19:11 2023 +0200

    fix(ci): update CLIs URL
    
    Closes #4597
---
 .github/actions/e2e-install-olm/action.yml     | 2 +-
 .github/actions/e2e-install-upgrade/action.yml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/actions/e2e-install-olm/action.yml b/.github/actions/e2e-install-olm/action.yml
index aa58d6046..a302a480e 100644
--- a/.github/actions/e2e-install-olm/action.yml
+++ b/.github/actions/e2e-install-olm/action.yml
@@ -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"
diff --git a/.github/actions/e2e-install-upgrade/action.yml b/.github/actions/e2e-install-upgrade/action.yml
index b80959e38..ec7610b0e 100644
--- a/.github/actions/e2e-install-upgrade/action.yml
+++ b/.github/actions/e2e-install-upgrade/action.yml
@@ -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"