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

dongjoon-hyun pushed a commit to branch branch-4.x
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-4.x by this push:
     new ae9ec01cf5a3 [SPARK-57768][K8S][R][DOC] Fix R version comment to 4.5.2 
in R Dockerfile
ae9ec01cf5a3 is described below

commit ae9ec01cf5a3af5cd09c22fe8aec3f5e97c3bb90
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Mon Jun 29 22:32:13 2026 -0700

    [SPARK-57768][K8S][R][DOC] Fix R version comment to 4.5.2 in R Dockerfile
    
    ### What changes were proposed in this pull request?
    
    This PR updates the R version comment in the Kubernetes R binding 
`Dockerfile` from `4.1.2` to `4.5.2`, and removes the stale CRAN Debian link 
from the comment.
    
    ### Why are the changes needed?
    
    The base image (`eclipse-temurin:25-jre`) is now Ubuntu 26.04 LTS 
(resolute), whose default `r-base` is `4.5.2`. The `apt install` step already 
installs this version, but the comment still said `4.1.2`. The CRAN Debian link 
no longer matches how R is installed (from the Ubuntu archive), so it is 
removed.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    ```
    $ docker run --rm eclipse-temurin:25-jre bash -c '. /etc/os-release; echo 
"$VERSION_CODENAME"; apt-get update -qq; apt-cache policy r-base | grep 
Candidate'
    resolute
      Candidate: 4.5.2-1ubuntu2
    ```
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    Generated-by: Claude Opus 4.8
    
    Closes #56877 from dongjoon-hyun/SPARK-57768.
    
    Authored-by: Dongjoon Hyun <[email protected]>
    Signed-off-by: Dongjoon Hyun <[email protected]>
    (cherry picked from commit bbfaf6d32dbd8b4825c7ae0ad4d378c5869832fc)
    Signed-off-by: Dongjoon Hyun <[email protected]>
---
 .../kubernetes/docker/src/main/dockerfiles/spark/bindings/R/Dockerfile  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/resource-managers/kubernetes/docker/src/main/dockerfiles/spark/bindings/R/Dockerfile
 
b/resource-managers/kubernetes/docker/src/main/dockerfiles/spark/bindings/R/Dockerfile
index 64e66288b838..d39c09fa0d7a 100644
--- 
a/resource-managers/kubernetes/docker/src/main/dockerfiles/spark/bindings/R/Dockerfile
+++ 
b/resource-managers/kubernetes/docker/src/main/dockerfiles/spark/bindings/R/Dockerfile
@@ -30,7 +30,7 @@ USER 0
 
 RUN mkdir ${SPARK_HOME}/R
 
-# Install R 4.1.2 (http://cloud.r-project.org/bin/linux/debian/)
+# Install R 4.5.2
 RUN \
   apt-get update && \
   apt install -y r-base r-base-dev && \


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to