Skip to content
This repository was archived by the owner on Jan 9, 2020. It is now read-only.

Commit 8d21a4a

Browse files
committed
Merge remote-tracking branch 'origin/branch-2.2-kubernetes' into integration-tests-reuse-minikube
2 parents 1780d8e + 0612195 commit 8d21a4a

File tree

88 files changed

+1630
-287
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+1630
-287
lines changed

assembly/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent_2.11</artifactId>
24-
<version>2.2.0-k8s-0.5.0-SNAPSHOT</version>
24+
<version>2.2.0-k8s-0.5.0</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

common/network-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.spark</groupId>
2424
<artifactId>spark-parent_2.11</artifactId>
25-
<version>2.2.0-k8s-0.5.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.5.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

common/network-shuffle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.spark</groupId>
2424
<artifactId>spark-parent_2.11</artifactId>
25-
<version>2.2.0-k8s-0.5.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.5.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

common/network-yarn/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.spark</groupId>
2424
<artifactId>spark-parent_2.11</artifactId>
25-
<version>2.2.0-k8s-0.5.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.5.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

common/sketch/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.spark</groupId>
2424
<artifactId>spark-parent_2.11</artifactId>
25-
<version>2.2.0-k8s-0.5.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.5.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

common/tags/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.spark</groupId>
2424
<artifactId>spark-parent_2.11</artifactId>
25-
<version>2.2.0-k8s-0.5.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.5.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

common/unsafe/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.spark</groupId>
2424
<artifactId>spark-parent_2.11</artifactId>
25-
<version>2.2.0-k8s-0.5.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.5.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

conf/kubernetes-resource-staging-server.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
name: spark-resource-staging-server-config
3333
containers:
3434
- name: spark-resource-staging-server
35-
image: kubespark/spark-resource-staging-server:v2.2.0-kubernetes-0.4.0
35+
image: kubespark/spark-resource-staging-server:v2.2.0-kubernetes-0.5.0
3636
resources:
3737
requests:
3838
cpu: 100m

conf/kubernetes-shuffle-service.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ spec:
3232
volumes:
3333
- name: temp-volume
3434
hostPath:
35-
path: '/tmp' # change this path according to your cluster configuration.
35+
path: '/tmp/spark-local' # change this path according to your cluster configuration.
3636
containers:
3737
- name: shuffle
3838
# This is an official image that is built
3939
# from the dockerfiles/shuffle directory
4040
# in the spark distribution.
41-
image: kubespark/spark-shuffle:v2.2.0-kubernetes-0.4.0
41+
image: kubespark/spark-shuffle:v2.2.0-kubernetes-0.5.0
4242
imagePullPolicy: IfNotPresent
4343
volumeMounts:
44-
- mountPath: '/tmp'
44+
- mountPath: '/tmp/spark-local'
4545
name: temp-volume
4646
# more volumes can be mounted here.
4747
# The spark job must be configured to use these

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent_2.11</artifactId>
24-
<version>2.2.0-k8s-0.5.0-SNAPSHOT</version>
24+
<version>2.2.0-k8s-0.5.0</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

0 commit comments

Comments
 (0)