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

chia7712 pushed a commit to branch 4.0
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/4.0 by this push:
     new 74d93adadb7 KAFKA-19501 Update OpenJDK base image from buster to 
bullseye (#20165)
74d93adadb7 is described below

commit 74d93adadb74ff682882b31dde03fea07fb4af97
Author: Tsung-Han Ho (Miles Ho) <[email protected]>
AuthorDate: Thu Jul 17 03:27:07 2025 +0800

    KAFKA-19501 Update OpenJDK base image from buster to bullseye (#20165)
    
    The changes update the OpenJDK base image from 17-buster to 17-bullseye:
    - Updates tests/docker/Dockerfile to use openjdk:17-bullseye instead of
    openjdk:17-buster
      - Updates tests/docker/ducker-ak script to use the new default image
    - Updates documentation in tests/README.md with the new image name
    examples
    
    Reviewers: Federico Valeri <[email protected]>, TengYao Chi
    <[email protected]>, Ken Huang <[email protected]>, Chia-Ping Tsai
    <[email protected]>
---
 tests/README.md         |  5 +++--
 tests/docker/Dockerfile |  4 +---
 tests/docker/ducker-ak  | 11 ++++++++---
 3 files changed, 12 insertions(+), 8 deletions(-)

diff --git a/tests/README.md b/tests/README.md
index 7a1d4e73394..a64946c892a 100644
--- a/tests/README.md
+++ b/tests/README.md
@@ -49,12 +49,13 @@ 
TC_PATHS="tests/kafkatest/tests/streams/streams_upgrade_test.py::StreamsUpgradeT
 ```
 * Run tests with a specific image name
 ```
-image_name="ducker-ak-openjdk:17-buster" bash tests/docker/run_tests.sh
+image_name="ducker-ak-openjdk:17" bash tests/docker/run_tests.sh
 ```
 * Run tests with a different JVM
 ```
-bash tests/docker/ducker-ak up -j 'openjdk:17-buster'; 
tests/docker/run_tests.sh
+bash tests/docker/ducker-ak up -j '<JDK_IMAGE>'; tests/docker/run_tests.sh
 ```
+  You can customize the OpenJDK base image using the `-j` or `--jdk` 
parameter, otherwise a default value will be used.
 * Remove ducker-ak containers
 ```
 bash tests/docker/ducker-ak down -f
diff --git a/tests/docker/Dockerfile b/tests/docker/Dockerfile
index 7dce5ef86d8..9fcca16b949 100644
--- a/tests/docker/Dockerfile
+++ b/tests/docker/Dockerfile
@@ -13,9 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-# The base image of openjdk:17 is typically oraclelinux:8-slim, which doesn't 
include apt-get. 
-# Therefore, use openjdk:17-buster instead.
-ARG jdk_version=openjdk:17-buster
+ARG jdk_version
 FROM $jdk_version AS build-native-image
 
 WORKDIR /build
diff --git a/tests/docker/ducker-ak b/tests/docker/ducker-ak
index 82834384761..368e7ebe08d 100755
--- a/tests/docker/ducker-ak
+++ b/tests/docker/ducker-ak
@@ -45,7 +45,9 @@ docker_run_memory_limit="2000m"
 default_num_nodes=14
 
 # The default OpenJDK base image.
-default_jdk="openjdk:17-buster"
+# The base image of openjdk:17 is typically oraclelinux:8-slim, which doesn't 
include apt-get. 
+# Therefore, use openjdk:17-bullseye instead.
+default_jdk="openjdk:17-bullseye"
 
 # The default ducker-ak image name.
 default_image_name="ducker-ak"
@@ -70,7 +72,7 @@ help|-h|--help
     Display this help message
 
 up [-n|--num-nodes NUM_NODES] [-f|--force] [docker-image]
-        [-C|--custom-ducktape DIR] [-e|--expose-ports ports]
+        [-C|--custom-ducktape DIR] [-e|--expose-ports ports] [-j|--jdk 
JDK_VERSION]
     Bring up a cluster with the specified amount of nodes (defaults to 
${default_num_nodes}).
     The docker image name defaults to ${default_image_name}.  If --force is 
specified, we will
     attempt to bring up an image even some parameters are not valid.
@@ -83,7 +85,10 @@ up [-n|--num-nodes NUM_NODES] [-f|--force] [docker-image]
     on the host. The argument can be a single port (like 5005), a port range 
like (5005-5009)
     or a combination of port/port-range separated by comma (like 2181,9092 or 
2181,5005-5008).
     By default no port is exposed. See README.md for more detail on this 
option.
-    
+
+    If -j|--jdk is specified, you can customize the OpenJDK base image used 
for building
+    the ducker container. Defaults to ${default_jdk}. Example: -j 
openjdk:17-bullseye
+
     Note that port 5678 will be automatically exposed for ducker01 node and 
will be mapped to 5678 
     on your local machine to enable debugging in VS Code.
 

Reply via email to