This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new c7e8d63f9c18 [SPARK-51025][K8S] Install `libssl-dev` in K8s Dockerfile
c7e8d63f9c18 is described below
commit c7e8d63f9c184d06af1526d694469e6fd8c6341a
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Tue Jan 28 16:32:33 2025 -0800
[SPARK-51025][K8S] Install `libssl-dev` in K8s Dockerfile
### What changes were proposed in this pull request?
This PR aims to install `libssl-dev` in K8s Dockerfile.
### Why are the changes needed?
This can be used when we use SSL via the following.
- #49716
### Does this PR introduce _any_ user-facing change?
No behavior change. This is additional library on Docker images.
### How was this patch tested?
Pass the CIs (including K8s integration test) and manual review.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #49717 from dongjoon-hyun/SPARK-51025.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.../kubernetes/docker/src/main/dockerfiles/spark/Dockerfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/resource-managers/kubernetes/docker/src/main/dockerfiles/spark/Dockerfile
b/resource-managers/kubernetes/docker/src/main/dockerfiles/spark/Dockerfile
index e088399091ef..936359544320 100644
--- a/resource-managers/kubernetes/docker/src/main/dockerfiles/spark/Dockerfile
+++ b/resource-managers/kubernetes/docker/src/main/dockerfiles/spark/Dockerfile
@@ -35,7 +35,7 @@ ARG spark_uid=185
RUN set -ex && \
apt-get update && \
ln -s /lib /lib64 && \
- apt install -y bash tini libc6 libpam-modules krb5-user libnss3 procps
net-tools logrotate && \
+ apt install -y bash tini libc6 libpam-modules krb5-user libnss3 procps
net-tools logrotate libssl-dev && \
mkdir -p /opt/spark && \
mkdir -p /opt/spark/examples && \
mkdir -p /opt/spark/work-dir && \
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]