You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by va...@apache.org on 2019/07/24 21:58:56 UTC

[spark] branch master updated: [SPARK-28465][K8S] Fix integration tests which fail due to missing ceph-nano image

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

vanzin 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 7504eab  [SPARK-28465][K8S] Fix integration tests which fail due to missing ceph-nano image
7504eab is described below

commit 7504eab42f90e830390e155531ab70192cbd1ad5
Author: Stavros Kontopoulos <st...@gmail.com>
AuthorDate: Wed Jul 24 14:58:20 2019 -0700

    [SPARK-28465][K8S] Fix integration tests which fail due to missing ceph-nano image
    
    ## What changes were proposed in this pull request?
    
    Fixes the tests. Follows instructions here: https://github.com/ceph/cn/issues/115#issuecomment-497384369
    ## How was this patch tested?
    
    Manually by running the tests with minikube.
    
    Closes #25222 from skonto/fix-ceph.
    
    Authored-by: Stavros Kontopoulos <st...@gmail.com>
    Signed-off-by: Marcelo Vanzin <va...@cloudera.com>
---
 .../org/apache/spark/deploy/k8s/integrationtest/DepsTestsSuite.scala  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/resource-managers/kubernetes/integration-tests/src/test/scala/org/apache/spark/deploy/k8s/integrationtest/DepsTestsSuite.scala b/resource-managers/kubernetes/integration-tests/src/test/scala/org/apache/spark/deploy/k8s/integrationtest/DepsTestsSuite.scala
index b0c4182..b6f3484 100644
--- a/resource-managers/kubernetes/integration-tests/src/test/scala/org/apache/spark/deploy/k8s/integrationtest/DepsTestsSuite.scala
+++ b/resource-managers/kubernetes/integration-tests/src/test/scala/org/apache/spark/deploy/k8s/integrationtest/DepsTestsSuite.scala
@@ -41,7 +41,7 @@ private[spark] trait DepsTestsSuite { k8sSuite: KubernetesSuite =>
 
   private def getCephContainer(): Container = {
     val envVars = Map ( "NETWORK_AUTO_DETECT" -> "4",
-      "RGW_CIVETWEB_PORT" -> "8000",
+      "RGW_FRONTEND_PORT" -> "8000",
       "SREE_PORT" -> "5001",
       "CEPH_DEMO_UID" -> "nano",
       "CEPH_DAEMON" -> "demo",
@@ -63,7 +63,7 @@ private[spark] trait DepsTestsSuite { k8sSuite: KubernetesSuite =>
     ).asJava
 
     new ContainerBuilder()
-      .withImage("ceph/daemon:v4.0.0-stable-4.0-master-centos-7-x86_64")
+      .withImage("ceph/daemon:latest")
       .withImagePullPolicy("Always")
       .withName(cName)
       .withPorts(new ContainerPortBuilder()


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