You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2023/11/06 11:23:46 UTC

(camel-quarkus-examples) branch camel-quarkus-main updated (879fe4b -> a7dbfe8)

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

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


    from 879fe4b  Removing @RegisterForReflection
     new 0bd6b52  Upgrade sftp-server container image to 0.4.0
     new a7dbfe8  Set -Xmx4000m

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/workflows/ci-build.yaml                                      | 2 +-
 file-bindy-ftp/src/main/kubernetes/kubernetes.yml                    | 2 +-
 file-bindy-ftp/src/main/kubernetes/openshift.yml                     | 2 +-
 file-bindy-ftp/src/test/java/org/acme/bindy/ftp/FtpTestResource.java | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)


(camel-quarkus-examples) 02/02: Set -Xmx4000m

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

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

commit a7dbfe8478533f1cf1176631abb89cdce889b1f3
Author: James Netherton <ja...@gmail.com>
AuthorDate: Mon Nov 6 10:28:23 2023 +0000

    Set -Xmx4000m
---
 .github/workflows/ci-build.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml
index 621526e..543f373 100644
--- a/.github/workflows/ci-build.yaml
+++ b/.github/workflows/ci-build.yaml
@@ -45,7 +45,7 @@ concurrency:
 
 env:
   LANG: en_US.UTF-8
-  MAVEN_OPTS: -Xmx3000m
+  MAVEN_OPTS: -Xmx4000m
   MAVEN_ARGS: -V -ntp -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -e
   TESTCONTAINERS_RYUK_DISABLED: true
 


(camel-quarkus-examples) 01/02: Upgrade sftp-server container image to 0.4.0

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

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

commit 0bd6b528513b67e1a20894aefbf0b26457abd760
Author: James Netherton <ja...@gmail.com>
AuthorDate: Mon Nov 6 09:52:01 2023 +0000

    Upgrade sftp-server container image to 0.4.0
---
 file-bindy-ftp/src/main/kubernetes/kubernetes.yml                    | 2 +-
 file-bindy-ftp/src/main/kubernetes/openshift.yml                     | 2 +-
 file-bindy-ftp/src/test/java/org/acme/bindy/ftp/FtpTestResource.java | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/file-bindy-ftp/src/main/kubernetes/kubernetes.yml b/file-bindy-ftp/src/main/kubernetes/kubernetes.yml
index 3ca4c7b..a8418c7 100644
--- a/file-bindy-ftp/src/main/kubernetes/kubernetes.yml
+++ b/file-bindy-ftp/src/main/kubernetes/kubernetes.yml
@@ -37,7 +37,7 @@ spec:
       containers:
         - name: openssh-server
           # Use a simple SFTP server implementation based on Apache Mina SSHD. Purely for testing only, NOT for production use
-          image: quay.io/jamesnetherton/sftp-server:0.3.0
+          image: quay.io/jamesnetherton/sftp-server:0.4.0
           ports:
             - containerPort: 2222
           env:
diff --git a/file-bindy-ftp/src/main/kubernetes/openshift.yml b/file-bindy-ftp/src/main/kubernetes/openshift.yml
index 3ca4c7b..a8418c7 100644
--- a/file-bindy-ftp/src/main/kubernetes/openshift.yml
+++ b/file-bindy-ftp/src/main/kubernetes/openshift.yml
@@ -37,7 +37,7 @@ spec:
       containers:
         - name: openssh-server
           # Use a simple SFTP server implementation based on Apache Mina SSHD. Purely for testing only, NOT for production use
-          image: quay.io/jamesnetherton/sftp-server:0.3.0
+          image: quay.io/jamesnetherton/sftp-server:0.4.0
           ports:
             - containerPort: 2222
           env:
diff --git a/file-bindy-ftp/src/test/java/org/acme/bindy/ftp/FtpTestResource.java b/file-bindy-ftp/src/test/java/org/acme/bindy/ftp/FtpTestResource.java
index 5b462a8..05b027a 100644
--- a/file-bindy-ftp/src/test/java/org/acme/bindy/ftp/FtpTestResource.java
+++ b/file-bindy-ftp/src/test/java/org/acme/bindy/ftp/FtpTestResource.java
@@ -30,7 +30,7 @@ import org.testcontainers.containers.wait.strategy.Wait;
 public class FtpTestResource implements QuarkusTestResourceLifecycleManager {
 
     private static final int FTP_PORT = 2222;
-    private static final String SSH_IMAGE = "quay.io/jamesnetherton/sftp-server:0.3.0";
+    private static final String SSH_IMAGE = "quay.io/jamesnetherton/sftp-server:0.4.0";
 
     private GenericContainer container;