This is an automated email from the ASF dual-hosted git repository.
shaneknapp 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 5564fe5 [SPARK-27178][K8S] add nss to the spark/k8s Dockerfile
5564fe5 is described below
commit 5564fe51513f725d2526dbf9e25a2f2c40d19afc
Author: shane knapp <[email protected]>
AuthorDate: Mon Mar 18 16:38:42 2019 -0700
[SPARK-27178][K8S] add nss to the spark/k8s Dockerfile
## What changes were proposed in this pull request?
while performing some tests on our existing minikube and k8s
infrastructure, i noticed that the integration tests were failing. i dug in and
discovered the following message buried at the end of the stacktrace:
```
Caused by: java.io.FileNotFoundException: /usr/lib/libnss3.so
at sun.security.pkcs11.Secmod.initialize(Secmod.java:193)
at sun.security.pkcs11.SunPKCS11.<init>(SunPKCS11.java:218)
... 81 more
```
after i added the `nss` package to
`resource-managers/kubernetes/docker/src/main/dockerfiles/spark/Dockerfile`,
everything worked.
this is also impacting current builds. see:
https://amplab.cs.berkeley.edu/jenkins/job/testing-k8s-prb-make-spark-distribution-unified/8959/console
## How was this patch tested?
i tested locally before pushing, and the build system will test the rest.
Closes #24111 from shaneknapp/add-nss-package-to-dockerfile.
Authored-by: shane knapp <[email protected]>
Signed-off-by: shane knapp <[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 1d8ac3c..871d34b 100644
--- a/resource-managers/kubernetes/docker/src/main/dockerfiles/spark/Dockerfile
+++ b/resource-managers/kubernetes/docker/src/main/dockerfiles/spark/Dockerfile
@@ -29,7 +29,7 @@ ARG spark_uid=185
RUN set -ex && \
apk upgrade --no-cache && \
ln -s /lib /lib64 && \
- apk add --no-cache bash tini libc6-compat linux-pam krb5 krb5-libs && \
+ apk add --no-cache bash tini libc6-compat linux-pam krb5 krb5-libs nss && \
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]