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 b0c4182240da..b6f3484a062c 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()