Skip to content

Commit

Permalink
[SPARK-22948][K8S] Move SparkPodInitContainer to correct package.
Browse files Browse the repository at this point in the history
Author: Marcelo Vanzin <[email protected]>

Closes #20156 from vanzin/SPARK-22948.
  • Loading branch information
Marcelo Vanzin committed Jan 4, 2018
1 parent d2cddc8 commit 95f9659
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dev/sparktestsupport/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ def __hash__(self):
kubernetes = Module(
name="kubernetes",
dependencies=[],
source_file_regexes=["resource-managers/kubernetes/core"],
source_file_regexes=["resource-managers/kubernetes"],
build_profile_flags=["-Pkubernetes"],
sbt_test_goals=["kubernetes/test"]
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.spark.deploy.rest.k8s
package org.apache.spark.deploy.k8s

import java.io.File
import java.util.concurrent.TimeUnit
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.spark.deploy.rest.k8s
package org.apache.spark.deploy.k8s

import java.io.File
import java.util.UUID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ FROM spark-base
# command should be invoked from the top level directory of the Spark distribution. E.g.:
# docker build -t spark-init:latest -f kubernetes/dockerfiles/init-container/Dockerfile .

ENTRYPOINT [ "/opt/entrypoint.sh", "/opt/spark/bin/spark-class", "org.apache.spark.deploy.rest.k8s.SparkPodInitContainer" ]
ENTRYPOINT [ "/opt/entrypoint.sh", "/opt/spark/bin/spark-class", "org.apache.spark.deploy.k8s.SparkPodInitContainer" ]

0 comments on commit 95f9659

Please sign in to comment.