Skip to content

Commit 562f301

Browse files
foxishliyinan926
authored andcommitted
Update poms for 2.2 release 0.4.0 (apache#508)
* Update POMs * Update extensions/v1beta1.Deployment to apps * Modified defaults on rss and ss
1 parent 3c1a16a commit 562f301

File tree

43 files changed

+46
-46
lines changed

Some content is hidden

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

43 files changed

+46
-46
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.4.0-SNAPSHOT</version>
24+
<version>2.2.0-k8s-0.4.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.4.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.4.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.4.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.4.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.4.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.4.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.4.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.4.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.4.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.4.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.4.0-SNAPSHOT</version>
25+
<version>2.2.0-k8s-0.4.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

conf/kubernetes-resource-staging-server.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# limitations under the License.
1616
#
1717
---
18-
apiVersion: extensions/v1beta1
18+
apiVersion: apps/v1beta1
1919
kind: Deployment
2020
metadata:
2121
name: spark-resource-staging-server
@@ -32,14 +32,14 @@ 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.3.0
35+
image: kubespark/spark-resource-staging-server:v2.2.0-kubernetes-0.4.0
3636
resources:
3737
requests:
3838
cpu: 100m
3939
memory: 256Mi
4040
limits:
4141
cpu: 100m
42-
memory: 256Mi
42+
memory: 1Gi
4343
volumeMounts:
4444
- name: resource-staging-server-properties
4545
mountPath: '/etc/spark-resource-staging-server'

conf/kubernetes-shuffle-service.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ spec:
3232
volumes:
3333
- name: temp-volume
3434
hostPath:
35-
path: '/var/tmp' # change this path according to your cluster configuration.
35+
path: '/tmp' # 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.3.0
41+
image: kubespark/spark-shuffle:v2.2.0-kubernetes-0.4.0
4242
imagePullPolicy: IfNotPresent
4343
volumeMounts:
4444
- mountPath: '/tmp'

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.4.0-SNAPSHOT</version>
24+
<version>2.2.0-k8s-0.4.0</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

0 commit comments

Comments
 (0)