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

Commit 5c29bf8

Browse files
committed
Sync'd to branch-2.2-kubernetes
2 parents a004888 + c6bc19d commit 5c29bf8

File tree

87 files changed

+1666
-246
lines changed

Some content is hidden

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

87 files changed

+1666
-246
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This is a collaboratively maintained project working on [SPARK-18278](https://is
1010

1111
- [Usage guide](https://apache-spark-on-k8s.github.io/userdocs/) shows how to run the code
1212
- [Development docs](resource-managers/kubernetes/README.md) shows how to get set up for development
13+
- [Architecture docs](resource-managers/kubernetes/architecture-docs/) shows the high level architecture of Spark on Kubernetes
1314
- Code is primarily located in the [resource-managers/kubernetes](resource-managers/kubernetes) folder
1415

1516
## Why does this fork exist?

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.3.0-SNAPSHOT</version>
24+
<version>2.2.0-k8s-0.4.0-SNAPSHOT</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.3.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.4.0-SNAPSHOT</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.3.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.4.0-SNAPSHOT</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.3.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.4.0-SNAPSHOT</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.3.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.4.0-SNAPSHOT</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.3.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.4.0-SNAPSHOT</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.3.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.4.0-SNAPSHOT</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.1.0-kubernetes-0.2.0
35+
image: kubespark/spark-resource-staging-server:v2.2.0-kubernetes-0.3.0
3636
resources:
3737
requests:
3838
cpu: 100m

conf/kubernetes-shuffle-service.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ kind: DaemonSet
2020
metadata:
2121
labels:
2222
app: spark-shuffle-service
23-
spark-version: 2.1.0
23+
spark-version: 2.2.0
2424
name: shuffle
2525
spec:
2626
template:
2727
metadata:
2828
labels:
2929
app: spark-shuffle-service
30-
spark-version: 2.1.0
30+
spark-version: 2.2.0
3131
spec:
3232
volumes:
3333
- name: temp-volume
@@ -38,7 +38,7 @@ spec:
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.1.0-kubernetes-0.2.0
41+
image: kubespark/spark-shuffle:v2.2.0-kubernetes-0.3.0
4242
imagePullPolicy: IfNotPresent
4343
volumeMounts:
4444
- mountPath: '/tmp'
@@ -51,4 +51,4 @@ spec:
5151
requests:
5252
cpu: "1"
5353
limits:
54-
cpu: "1"
54+
cpu: "1"

0 commit comments

Comments
 (0)