Repository: spark
Updated Branches:
  refs/heads/master a36b78b0e -> 22e1849bc


[SPARK-22866][K8S] Fix path issue in Kubernetes dockerfile

## What changes were proposed in this pull request?

The path was recently changed in https://github.com/apache/spark/pull/19946, 
but the dockerfile was not updated.
This is a trivial 1 line fix.

## How was this patch tested?

`./sbin/build-push-docker-images.sh -r spark-repo -t latest build`

cc/ vanzin mridulm rxin jiangxb1987 liyinan926

Author: Anirudh Ramanathan <ramanath...@google.com>
Author: foxish <ramanath...@google.com>

Closes #20051 from foxish/patch-1.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/22e1849b
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/22e1849b
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/22e1849b

Branch: refs/heads/master
Commit: 22e1849bcfb3ef988f4f9a5c2783bfc7ec001694
Parents: a36b78b
Author: Anirudh Ramanathan <ramanath...@google.com>
Authored: Thu Dec 21 21:03:10 2017 -0800
Committer: Mridul Muralidharan <mri...@gmail.com>
Committed: Thu Dec 21 21:03:10 2017 -0800

----------------------------------------------------------------------
 .../kubernetes/docker/src/main/dockerfiles/driver/Dockerfile     | 2 +-
 .../kubernetes/docker/src/main/dockerfiles/executor/Dockerfile   | 2 +-
 .../kubernetes/docker/src/main/dockerfiles/spark-base/Dockerfile | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/22e1849b/resource-managers/kubernetes/docker/src/main/dockerfiles/driver/Dockerfile
----------------------------------------------------------------------
diff --git 
a/resource-managers/kubernetes/docker/src/main/dockerfiles/driver/Dockerfile 
b/resource-managers/kubernetes/docker/src/main/dockerfiles/driver/Dockerfile
index d163495..9b682f8 100644
--- a/resource-managers/kubernetes/docker/src/main/dockerfiles/driver/Dockerfile
+++ b/resource-managers/kubernetes/docker/src/main/dockerfiles/driver/Dockerfile
@@ -22,7 +22,7 @@ FROM spark-base
 # If this docker file is being used in the context of building your images 
from a Spark
 # distribution, the docker build command should be invoked from the top level 
directory
 # of the Spark distribution. E.g.:
-# docker build -t spark-driver:latest -f dockerfiles/spark-base/Dockerfile .
+# docker build -t spark-driver:latest -f 
kubernetes/dockerfiles/spark-base/Dockerfile .
 
 COPY examples /opt/spark/examples
 

http://git-wip-us.apache.org/repos/asf/spark/blob/22e1849b/resource-managers/kubernetes/docker/src/main/dockerfiles/executor/Dockerfile
----------------------------------------------------------------------
diff --git 
a/resource-managers/kubernetes/docker/src/main/dockerfiles/executor/Dockerfile 
b/resource-managers/kubernetes/docker/src/main/dockerfiles/executor/Dockerfile
index 0e38169..168cd4c 100644
--- 
a/resource-managers/kubernetes/docker/src/main/dockerfiles/executor/Dockerfile
+++ 
b/resource-managers/kubernetes/docker/src/main/dockerfiles/executor/Dockerfile
@@ -22,7 +22,7 @@ FROM spark-base
 # If this docker file is being used in the context of building your images 
from a Spark
 # distribution, the docker build command should be invoked from the top level 
directory
 # of the Spark distribution. E.g.:
-# docker build -t spark-executor:latest -f dockerfiles/spark-base/Dockerfile .
+# docker build -t spark-executor:latest -f 
kubernetes/dockerfiles/spark-base/Dockerfile .
 
 COPY examples /opt/spark/examples
 

http://git-wip-us.apache.org/repos/asf/spark/blob/22e1849b/resource-managers/kubernetes/docker/src/main/dockerfiles/spark-base/Dockerfile
----------------------------------------------------------------------
diff --git 
a/resource-managers/kubernetes/docker/src/main/dockerfiles/spark-base/Dockerfile
 
b/resource-managers/kubernetes/docker/src/main/dockerfiles/spark-base/Dockerfile
index 20316c9..222e777 100644
--- 
a/resource-managers/kubernetes/docker/src/main/dockerfiles/spark-base/Dockerfile
+++ 
b/resource-managers/kubernetes/docker/src/main/dockerfiles/spark-base/Dockerfile
@@ -22,7 +22,7 @@ FROM openjdk:8-alpine
 # If this docker file is being used in the context of building your images 
from a Spark
 # distribution, the docker build command should be invoked from the top level 
directory
 # of the Spark distribution. E.g.:
-# docker build -t spark-base:latest -f dockerfiles/spark-base/Dockerfile .
+# docker build -t spark-base:latest -f 
kubernetes/dockerfiles/spark-base/Dockerfile .
 
 RUN set -ex && \
     apk upgrade --no-cache && \
@@ -38,7 +38,7 @@ COPY jars /opt/spark/jars
 COPY bin /opt/spark/bin
 COPY sbin /opt/spark/sbin
 COPY conf /opt/spark/conf
-COPY dockerfiles/spark-base/entrypoint.sh /opt/
+COPY kubernetes/dockerfiles/spark-base/entrypoint.sh /opt/
 
 ENV SPARK_HOME /opt/spark
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to