From cd7e529fc768cd7b38fa4045473ae56aa4f0599d Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Wed, 18 Sep 2024 16:54:20 -0700 Subject: [PATCH 1/3] [SPARK-49703] Publish Java 21 Docker image for preview1 --- .github/workflows/build_4.0.0-preview1.yaml | 2 +- .github/workflows/publish-java21.yaml | 88 ++++++++++++ .../Dockerfile | 29 ++++ .../Dockerfile | 26 ++++ .../scala2.13-java21-r-ubuntu/Dockerfile | 28 ++++ .../scala2.13-java21-ubuntu/Dockerfile | 81 +++++++++++ .../scala2.13-java21-ubuntu/entrypoint.sh | 130 ++++++++++++++++++ README.md | 2 +- add-dockerfiles.sh | 10 +- versions.json | 29 ++++ 10 files changed, 421 insertions(+), 4 deletions(-) create mode 100644 .github/workflows/publish-java21.yaml create mode 100644 4.0.0-preview1/scala2.13-java21-python3-r-ubuntu/Dockerfile create mode 100644 4.0.0-preview1/scala2.13-java21-python3-ubuntu/Dockerfile create mode 100644 4.0.0-preview1/scala2.13-java21-r-ubuntu/Dockerfile create mode 100644 4.0.0-preview1/scala2.13-java21-ubuntu/Dockerfile create mode 100755 4.0.0-preview1/scala2.13-java21-ubuntu/entrypoint.sh diff --git a/.github/workflows/build_4.0.0-preview1.yaml b/.github/workflows/build_4.0.0-preview1.yaml index aa683f7..31df15a 100644 --- a/.github/workflows/build_4.0.0-preview1.yaml +++ b/.github/workflows/build_4.0.0-preview1.yaml @@ -31,7 +31,7 @@ jobs: strategy: matrix: image-type: ["all", "python", "scala", "r"] - java: [17] + java: [17, 21] name: Run secrets: inherit uses: ./.github/workflows/main.yml diff --git a/.github/workflows/publish-java21.yaml b/.github/workflows/publish-java21.yaml new file mode 100644 index 0000000..1a2078a --- /dev/null +++ b/.github/workflows/publish-java21.yaml @@ -0,0 +1,88 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + +name: "Publish (Java 21 only)" + +on: + workflow_dispatch: + inputs: + spark: + description: 'The Spark version of Spark image.' + required: true + default: '4.0.0-preview1' + type: choice + options: + - 4.0.0-preview1 + publish: + description: 'Publish the image or not.' + default: false + type: boolean + required: true + repository: + description: The registry to be published (Available only when publish is true). + required: false + default: ghcr.io/apache/spark-docker + type: choice + options: + # GHCR: This required the write permission of apache/spark-docker (Spark Committer) + - ghcr.io/apache/spark-docker + # Dockerhub: This required the DOCKERHUB_TOKEN and DOCKERHUB_USER (Spark Committer) + - apache + +jobs: + # We first build and publish the base image + run-base-build: + strategy: + matrix: + scala: [2.13] + java: [21] + image-type: ["scala"] + permissions: + packages: write + name: Run Base + secrets: inherit + uses: ./.github/workflows/main.yml + with: + spark: ${{ inputs.spark }} + scala: ${{ matrix.scala }} + java: ${{ matrix.java }} + publish: ${{ inputs.publish }} + repository: ${{ inputs.repository }} + image-type: ${{ matrix.image-type }} + + # Then publish the all / python / r images + run-build: + needs: run-base-build + strategy: + matrix: + scala: [2.13] + java: [21] + image-type: ["all", "python", "r"] + permissions: + packages: write + name: Run + secrets: inherit + uses: ./.github/workflows/main.yml + with: + spark: ${{ inputs.spark }} + scala: ${{ matrix.scala }} + java: ${{ matrix.java }} + publish: ${{ inputs.publish }} + repository: ${{ inputs.repository }} + image-type: ${{ matrix.image-type }} diff --git a/4.0.0-preview1/scala2.13-java21-python3-r-ubuntu/Dockerfile b/4.0.0-preview1/scala2.13-java21-python3-r-ubuntu/Dockerfile new file mode 100644 index 0000000..1039934 --- /dev/null +++ b/4.0.0-preview1/scala2.13-java21-python3-r-ubuntu/Dockerfile @@ -0,0 +1,29 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +FROM spark:4.0.0-preview1-scala2.13-java21-ubuntu + +USER root + +RUN set -ex; \ + apt-get update; \ + apt-get install -y python3 python3-pip; \ + apt-get install -y r-base r-base-dev; \ + rm -rf /var/lib/apt/lists/* + +ENV R_HOME /usr/lib/R + +USER spark diff --git a/4.0.0-preview1/scala2.13-java21-python3-ubuntu/Dockerfile b/4.0.0-preview1/scala2.13-java21-python3-ubuntu/Dockerfile new file mode 100644 index 0000000..d1de8b2 --- /dev/null +++ b/4.0.0-preview1/scala2.13-java21-python3-ubuntu/Dockerfile @@ -0,0 +1,26 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +FROM spark:4.0.0-preview1-scala2.13-java21-ubuntu + +USER root + +RUN set -ex; \ + apt-get update; \ + apt-get install -y python3 python3-pip; \ + rm -rf /var/lib/apt/lists/* + +USER spark diff --git a/4.0.0-preview1/scala2.13-java21-r-ubuntu/Dockerfile b/4.0.0-preview1/scala2.13-java21-r-ubuntu/Dockerfile new file mode 100644 index 0000000..536b589 --- /dev/null +++ b/4.0.0-preview1/scala2.13-java21-r-ubuntu/Dockerfile @@ -0,0 +1,28 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +FROM spark:4.0.0-preview1-scala2.13-java21-ubuntu + +USER root + +RUN set -ex; \ + apt-get update; \ + apt-get install -y r-base r-base-dev; \ + rm -rf /var/lib/apt/lists/* + +ENV R_HOME /usr/lib/R + +USER spark diff --git a/4.0.0-preview1/scala2.13-java21-ubuntu/Dockerfile b/4.0.0-preview1/scala2.13-java21-ubuntu/Dockerfile new file mode 100644 index 0000000..7f9981a --- /dev/null +++ b/4.0.0-preview1/scala2.13-java21-ubuntu/Dockerfile @@ -0,0 +1,81 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +FROM eclipse-temurin:21-jammy + +ARG spark_uid=185 + +RUN groupadd --system --gid=${spark_uid} spark && \ + useradd --system --uid=${spark_uid} --gid=spark spark + +RUN set -ex; \ + apt-get update; \ + apt-get install -y gnupg2 wget bash tini libc6 libpam-modules krb5-user libnss3 procps net-tools gosu libnss-wrapper; \ + mkdir -p /opt/spark; \ + mkdir /opt/spark/python; \ + mkdir -p /opt/spark/examples; \ + mkdir -p /opt/spark/work-dir; \ + chmod g+w /opt/spark/work-dir; \ + touch /opt/spark/RELEASE; \ + chown -R spark:spark /opt/spark; \ + echo "auth required pam_wheel.so use_uid" >> /etc/pam.d/su; \ + rm -rf /var/lib/apt/lists/* + +# Install Apache Spark +# https://downloads.apache.org/spark/KEYS +ENV SPARK_TGZ_URL=https://archive.apache.org/dist/spark/spark-4.0.0-preview1/spark-4.0.0-preview1-bin-hadoop3.tgz \ + SPARK_TGZ_ASC_URL=https://archive.apache.org/dist/spark/spark-4.0.0-preview1/spark-4.0.0-preview1-bin-hadoop3.tgz.asc \ + GPG_KEY=4DC9676CEF9A83E98FCA02784D6620843CD87F5A + +RUN set -ex; \ + export SPARK_TMP="$(mktemp -d)"; \ + cd $SPARK_TMP; \ + wget -nv -O spark.tgz "$SPARK_TGZ_URL"; \ + wget -nv -O spark.tgz.asc "$SPARK_TGZ_ASC_URL"; \ + export GNUPGHOME="$(mktemp -d)"; \ + gpg --batch --keyserver hkps://keys.openpgp.org --recv-key "$GPG_KEY" || \ + gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys "$GPG_KEY"; \ + gpg --batch --verify spark.tgz.asc spark.tgz; \ + gpgconf --kill all; \ + rm -rf "$GNUPGHOME" spark.tgz.asc; \ + \ + tar -xf spark.tgz --strip-components=1; \ + chown -R spark:spark .; \ + mv jars /opt/spark/; \ + mv RELEASE /opt/spark/; \ + mv bin /opt/spark/; \ + mv sbin /opt/spark/; \ + mv kubernetes/dockerfiles/spark/decom.sh /opt/; \ + mv examples /opt/spark/; \ + ln -s "$(basename $(ls /opt/spark/examples/jars/spark-examples_*.jar))" /opt/spark/examples/jars/spark-examples.jar; \ + mv kubernetes/tests /opt/spark/; \ + mv data /opt/spark/; \ + mv python/pyspark /opt/spark/python/pyspark/; \ + mv python/lib /opt/spark/python/lib/; \ + mv R /opt/spark/; \ + chmod a+x /opt/decom.sh; \ + cd ..; \ + rm -rf "$SPARK_TMP"; + +COPY entrypoint.sh /opt/ + +ENV SPARK_HOME /opt/spark + +WORKDIR /opt/spark/work-dir + +USER spark + +ENTRYPOINT [ "/opt/entrypoint.sh" ] diff --git a/4.0.0-preview1/scala2.13-java21-ubuntu/entrypoint.sh b/4.0.0-preview1/scala2.13-java21-ubuntu/entrypoint.sh new file mode 100755 index 0000000..c576d8f --- /dev/null +++ b/4.0.0-preview1/scala2.13-java21-ubuntu/entrypoint.sh @@ -0,0 +1,130 @@ +#!/bin/bash +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Prevent any errors from being silently ignored +set -eo pipefail + +attempt_setup_fake_passwd_entry() { + # Check whether there is a passwd entry for the container UID + local myuid; myuid="$(id -u)" + # If there is no passwd entry for the container UID, attempt to fake one + # You can also refer to the https://github.com/docker-library/official-images/pull/13089#issuecomment-1534706523 + # It's to resolve OpenShift random UID case. + # See also: https://github.com/docker-library/postgres/pull/448 + if ! getent passwd "$myuid" &> /dev/null; then + local wrapper + for wrapper in {/usr,}/lib{/*,}/libnss_wrapper.so; do + if [ -s "$wrapper" ]; then + NSS_WRAPPER_PASSWD="$(mktemp)" + NSS_WRAPPER_GROUP="$(mktemp)" + export LD_PRELOAD="$wrapper" NSS_WRAPPER_PASSWD NSS_WRAPPER_GROUP + local mygid; mygid="$(id -g)" + printf 'spark:x:%s:%s:${SPARK_USER_NAME:-anonymous uid}:%s:/bin/false\n' "$myuid" "$mygid" "$SPARK_HOME" > "$NSS_WRAPPER_PASSWD" + printf 'spark:x:%s:\n' "$mygid" > "$NSS_WRAPPER_GROUP" + break + fi + done + fi +} + +if [ -z "$JAVA_HOME" ]; then + JAVA_HOME=$(java -XshowSettings:properties -version 2>&1 > /dev/null | grep 'java.home' | awk '{print $3}') +fi + +SPARK_CLASSPATH="$SPARK_CLASSPATH:${SPARK_HOME}/jars/*" +for v in "${!SPARK_JAVA_OPT_@}"; do + SPARK_EXECUTOR_JAVA_OPTS+=( "${!v}" ) +done + +if [ -n "$SPARK_EXTRA_CLASSPATH" ]; then + SPARK_CLASSPATH="$SPARK_CLASSPATH:$SPARK_EXTRA_CLASSPATH" +fi + +if ! [ -z "${PYSPARK_PYTHON+x}" ]; then + export PYSPARK_PYTHON +fi +if ! [ -z "${PYSPARK_DRIVER_PYTHON+x}" ]; then + export PYSPARK_DRIVER_PYTHON +fi + +# If HADOOP_HOME is set and SPARK_DIST_CLASSPATH is not set, set it here so Hadoop jars are available to the executor. +# It does not set SPARK_DIST_CLASSPATH if already set, to avoid overriding customizations of this value from elsewhere e.g. Docker/K8s. +if [ -n "${HADOOP_HOME}" ] && [ -z "${SPARK_DIST_CLASSPATH}" ]; then + export SPARK_DIST_CLASSPATH="$($HADOOP_HOME/bin/hadoop classpath)" +fi + +if ! [ -z "${HADOOP_CONF_DIR+x}" ]; then + SPARK_CLASSPATH="$HADOOP_CONF_DIR:$SPARK_CLASSPATH"; +fi + +if ! [ -z "${SPARK_CONF_DIR+x}" ]; then + SPARK_CLASSPATH="$SPARK_CONF_DIR:$SPARK_CLASSPATH"; +elif ! [ -z "${SPARK_HOME+x}" ]; then + SPARK_CLASSPATH="$SPARK_HOME/conf:$SPARK_CLASSPATH"; +fi + +# SPARK-43540: add current working directory into executor classpath +SPARK_CLASSPATH="$SPARK_CLASSPATH:$PWD" + +# Switch to spark if no USER specified (root by default) otherwise use USER directly +switch_spark_if_root() { + if [ $(id -u) -eq 0 ]; then + echo gosu spark + fi +} + +case "$1" in + driver) + shift 1 + CMD=( + "$SPARK_HOME/bin/spark-submit" + --conf "spark.driver.bindAddress=$SPARK_DRIVER_BIND_ADDRESS" + --conf "spark.executorEnv.SPARK_DRIVER_POD_IP=$SPARK_DRIVER_BIND_ADDRESS" + --deploy-mode client + "$@" + ) + attempt_setup_fake_passwd_entry + # Execute the container CMD under tini for better hygiene + exec $(switch_spark_if_root) /usr/bin/tini -s -- "${CMD[@]}" + ;; + executor) + shift 1 + CMD=( + ${JAVA_HOME}/bin/java + "${SPARK_EXECUTOR_JAVA_OPTS[@]}" + -Xms"$SPARK_EXECUTOR_MEMORY" + -Xmx"$SPARK_EXECUTOR_MEMORY" + -cp "$SPARK_CLASSPATH:$SPARK_DIST_CLASSPATH" + org.apache.spark.scheduler.cluster.k8s.KubernetesExecutorBackend + --driver-url "$SPARK_DRIVER_URL" + --executor-id "$SPARK_EXECUTOR_ID" + --cores "$SPARK_EXECUTOR_CORES" + --app-id "$SPARK_APPLICATION_ID" + --hostname "$SPARK_EXECUTOR_POD_IP" + --resourceProfileId "$SPARK_RESOURCE_PROFILE_ID" + --podName "$SPARK_EXECUTOR_POD_NAME" + ) + attempt_setup_fake_passwd_entry + # Execute the container CMD under tini for better hygiene + exec $(switch_spark_if_root) /usr/bin/tini -s -- "${CMD[@]}" + ;; + + *) + # Non-spark-on-k8s command provided, proceeding in pass-through mode... + exec "$@" + ;; +esac diff --git a/README.md b/README.md index f34328b..ce1dd7d 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ You can see [3.4.0 PR](https://github.com/apache/spark-docker/pull/33) as refere ### Step 2. Publish apache/spark Images. -Click [Publish (Java 17 only)](https://github.com/apache/spark-docker/actions/workflows/publish-java17.yaml) (such as 4.x) or [Publish](https://github.com/apache/spark-docker/actions/workflows/publish.yml) (such as 3.x) to publish images. +Click [Publish (Java 21 only)](https://github.com/apache/spark-docker/actions/workflows/publish-java17.yaml), [Publish (Java 17 only)](https://github.com/apache/spark-docker/actions/workflows/publish-java17.yaml) (such as 4.x) or [Publish](https://github.com/apache/spark-docker/actions/workflows/publish.yml) (such as 3.x) to publish images. After this, the [apache/spark](https://hub.docker.com/r/apache/spark) docker images will be published. diff --git a/add-dockerfiles.sh b/add-dockerfiles.sh index ccc4ac1..c50f4e7 100755 --- a/add-dockerfiles.sh +++ b/add-dockerfiles.sh @@ -35,6 +35,10 @@ if echo $VERSION | grep -Eq "^4."; then scala2.13-java17-python3-ubuntu scala2.13-java17-r-ubuntu scala2.13-java17-ubuntu + scala2.13-java21-python3-r-ubuntu + scala2.13-java21-python3-ubuntu + scala2.13-java21-r-ubuntu + scala2.13-java21-ubuntu " elif echo $VERSION | grep -Eq "^3."; then # 3.x default @@ -71,7 +75,9 @@ for TAG in $TAGS; do OPTS+=" --scala-version 2.13" fi - if echo $TAG | grep -q "java17"; then + if echo $TAG | grep -q "java21"; then + OPTS+=" --java-version 21 --image eclipse-temurin:21-jammy" + elif echo $TAG | grep -q "java17"; then OPTS+=" --java-version 17 --image eclipse-temurin:17-jammy" elif echo $TAG | grep -q "java11"; then OPTS+=" --java-version 11 --image eclipse-temurin:11-jre-focal" @@ -81,7 +87,7 @@ for TAG in $TAGS; do mkdir -p $VERSION/$TAG - if [ "$TAG" == "scala2.12-java11-ubuntu" ] || [ "$TAG" == "scala2.12-java17-ubuntu" ] || [ "$TAG" == "scala2.13-java17-ubuntu" ]; then + if [ "$TAG" == "scala2.12-java11-ubuntu" ] || [ "$TAG" == "scala2.12-java17-ubuntu" ] || [ "$TAG" == "scala2.13-java17-ubuntu" ] || [ "$TAG" == "scala2.13-java21-ubuntu" ]; then python3 tools/template.py $OPTS > $VERSION/$TAG/Dockerfile python3 tools/template.py $OPTS -f entrypoint.sh.template > $VERSION/$TAG/entrypoint.sh chmod a+x $VERSION/$TAG/entrypoint.sh diff --git a/versions.json b/versions.json index 7f0b174..1dbaf61 100644 --- a/versions.json +++ b/versions.json @@ -1,5 +1,34 @@ { "versions": [ + { + "path": "4.0.0-preview1/scala2.13-java21-python3-ubuntu", + "tags": [ + "4.0.0-preview1-scala2.13-java21-python3-ubuntu", + "4.0.0-preview1-java21-python3", + "4.0.0-java21", + "python3-java21" + ] + }, + { + "path": "4.0.0-preview1/scala2.13-java21-r-ubuntu", + "tags": [ + "4.0.0-preview1-scala2.13-java21-r-ubuntu", + "4.0.0-preview1-java21-r" + ] + }, + { + "path": "4.0.0-preview1/scala2.13-java21-ubuntu", + "tags": [ + "4.0.0-preview1-scala2.13-java21-ubuntu", + "4.0.0-preview1-java21-scala" + ] + }, + { + "path": "4.0.0-preview1/scala2.13-java21-python3-r-ubuntu", + "tags": [ + "4.0.0-preview1-scala2.13-java21-python3-r-ubuntu" + ] + }, { "path": "4.0.0-preview1/scala2.13-java17-python3-ubuntu", "tags": [ From 494f5b0733f0007cb7ff4d2b8d9acfe12996324b Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Wed, 18 Sep 2024 17:18:31 -0700 Subject: [PATCH 2/3] Update README.md Co-authored-by: Liang-Chi Hsieh --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ce1dd7d..319576d 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ You can see [3.4.0 PR](https://github.com/apache/spark-docker/pull/33) as refere ### Step 2. Publish apache/spark Images. -Click [Publish (Java 21 only)](https://github.com/apache/spark-docker/actions/workflows/publish-java17.yaml), [Publish (Java 17 only)](https://github.com/apache/spark-docker/actions/workflows/publish-java17.yaml) (such as 4.x) or [Publish](https://github.com/apache/spark-docker/actions/workflows/publish.yml) (such as 3.x) to publish images. +Click [Publish (Java 21 only)](https://github.com/apache/spark-docker/actions/workflows/publish-java21.yaml), [Publish (Java 17 only)](https://github.com/apache/spark-docker/actions/workflows/publish-java17.yaml) (such as 4.x) or [Publish](https://github.com/apache/spark-docker/actions/workflows/publish.yml) (such as 3.x) to publish images. After this, the [apache/spark](https://hub.docker.com/r/apache/spark) docker images will be published. From 1ba785079ff03006caa9be86ccfcec81d16c30bf Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Wed, 18 Sep 2024 17:40:39 -0700 Subject: [PATCH 3/3] Address comments --- versions.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/versions.json b/versions.json index 1dbaf61..0d1d43c 100644 --- a/versions.json +++ b/versions.json @@ -5,8 +5,7 @@ "tags": [ "4.0.0-preview1-scala2.13-java21-python3-ubuntu", "4.0.0-preview1-java21-python3", - "4.0.0-java21", - "python3-java21" + "4.0.0-preview1-java21" ] }, {